TradingView Strategy Finder

TradingView Strategy Finder

Automated Backtesting Tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TradingView Strategy Finder",
  "homepage_url": "http://localhost:8080/",
  "description": "Automated Backtesting Tool",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "https://www.tv-hub.org/*"
  ],
  "web_accessible_resources": [
    "js/functions.js"
  ],
  "version": "1.3.0",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.tradingview.com/*"
      ],
      "js": [
        "js/content-script.js"
      ]
    }
  ],
  "devtools_page": "devtools.html",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "TradingView Strategy Finder",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}