Seamless integration with TradingView allows users to easily upload and download indicator and strategy parameters.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"author": "The Better Traders",
"description": "Seamless integration with TradingView allows users to easily upload and download indicator and strategy parameters.",
"name": "TradingView Parameters",
"version": "1.3",
"icons": {
"16": "images/tbt_ext_16.png",
"32": "images/tbt_ext_32.png",
"48": "images/tbt_ext_48.png",
"64": "images/tbt_ext_64.png",
"128": "images/tbt_ext_128.png"
},
"content_scripts": [
{
"matches": [
"https://*.tradingview.com/chart/*"
],
"js": [
"content_scripts/chartElements.js",
"content_scripts/selector.js",
"content_scripts/page.js",
"content_scripts/ui.js",
"content_scripts/tv.js",
"content_scripts/file.js",
"content_scripts/action.js",
"content_scripts/controller.js"
],
"run_at": "document_end"
}
],
"permissions": [
"storage",
"unlimitedStorage",
"activeTab",
"tabs"
],
"action": {
"default_icon": {
"16": "images/tbt_ext_16.png",
"32": "images/tbt_ext_32.png",
"48": "images/tbt_ext_48.png",
"64": "images/tbt_ext_64.png",
"128": "images/tbt_ext_128.png"
},
"default_title": "The Better Traders"
},
"web_accessible_resources": [
{
"resources": [
"page-context.js",
"fonts/fa-solid-900.woff2",
"lib/plotly.min.js"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "background.js"
}
}