Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "AI Trade Insights (Yahoo Finance to ChatGPT)",
"version": "3.2.5",
"permissions": [
"storage",
"scripting",
"activeTab",
"clipboardWrite"
],
"host_permissions": [
"*:\/\/finance.yahoo.com\/*",
"*:\/\/*.finance.yahoo.com\/*",
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*"
],
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"action": {
"default_title": "AI Trade Insights",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/finance.yahoo.com\/quote\/*",
"*:\/\/*.finance.yahoo.com\/quote\/*"
],
"js": [
"content_prompt.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/chat.openai.com\/*",
"*:\/\/*.chat.openai.com\/*",
"*:\/\/chatgpt.com\/*",
"*:\/\/*.chatgpt.com\/*"
],
"js": [
"content_chatgpt.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"content_kline_batch.js",
"content_cropper.js",
"content_deepread.js"
],
"matches": [
"*:\/\/*.finance.yahoo.com\/*"
]
}
],
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png",
"256": "assets\/icon256.png"
}
}