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": "TickerStation: Multi-View & Unlimited Watchlist",
"description": "Store unlimited TradingView tickers and bypass watchlist limits with Multi-View layouts.",
"version": "1.1",
"permissions": [
"storage",
"activeTab",
"declarativeNetRequest"
],
"host_permissions": [
"*:\/\/*.tradingview.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.tradingview.com\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}