Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "AIME - The ChatGPT in finance area",
"version": "1.1.2",
"description": "Aime can analyze stocks, summarize news, and provide sharable trading ideas as you surf the web.",
"icons": {
"16": "icons\/aime2.png",
"32": "icons\/aime2.png",
"48": "icons\/aime2.png",
"128": "icons\/aime2.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "AIME - The ChatGPT in finance area"
},
"host_permissions": [
"*:\/\/ainvest.com\/"
],
"permissions": [
"storage",
"activeTab",
"sidePanel"
],
"side_panel": {
"default_path": "Aime.html",
"openPanelOnActionClick": true,
"default_title": "AIME - The ChatGPT in finance area",
"open_at_install": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_idle",
"js": [
"contentScript.js"
],
"css": [
"contentLink.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"icons\/*"
],
"matches": [
"<all_urls>"
]
}
]
}