TradingViewBridgeMT5

TradingViewBridgeMT5

Trading View to MT5 bridging Chrome extension!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TradingViewBridgeMT5",
  "version": "1.0.2",
  "description": "Trading View to MT5 bridging Chrome extension!",
  "permissions": [
    "nativeMessaging",
    "background"
  ],
  "web_accessible_resources": [
    "script.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.tradingview.com/chart/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "manifest_version": 2
}