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": "The Wyckoff AI Trading Assistant",
"version": "2.2",
"description": "Analyzes trading charts using the Wyckoff methodology to provide stop loss and take profit suggestions.",
"permissions": [
"activeTab",
"storage",
"alarms",
"cookies"
],
"host_permissions": [
"https:\/\/wyckoff-extension-api.vercel.app\/",
"<all_urls>"
],
"action": {
"default_popup": "popup\/auth.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background\/background.js"
},
"web_accessible_resources": [
{
"resources": [
"background\/installation-id.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content\/content.js"
]
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}