TradingView Alerts to MT4/MT5

TradingView Alerts to MT4/MT5

Enables trading when you sleep

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://www.paypal.com 'sha256-b+mf6EIMFYxuAIdk6/2IF09zTUsJrlW6qZaw4opG6QU=' 'unsafe-eval'; object-src 'self'",
  "name": "TradingView Alerts to MT4/MT5",
  "description": "Enables trading when you sleep",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA31OCaoKKS+0dS8j4WZOjkGL4RKNChv+uyFUaHiNJ+ThKv08IBYmMyrcxM1qa+cLGdam+1GpebuDo3uoHRQHf6lqabtgXxQHtNuPSP8Hs5IsH/2/HmJ9aTTZ+5j530YBBnFPdKazw7muyk7uC6gMQBRT701afH7tu5XYAZYQgRz/TsiMCja1Hu1tdIxr9CvGHPBcCqFV124L9C99Got/St9tUWrZngv/hlJEMgcQCZIS24HuKtixOvG6mo0hMamKgw6ECZoBbeo1B3xGZbKafWNs89wFNqlzW8s6o2QTHKt4yjFY9nIZX1WG/Y1XxzX1ku+hnUupdSsJbKOyA4GPNwwIDAQAB",
  "version": "2.9.6",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.tradingview.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "js/functions.js",
        "lib/signalr.js",
        "js/TradingConnector.js",
        "main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "content_helper.js"
  ],
  "background": {
    "scripts": [
      "js/functions.js",
      "js/Storage.js",
      "js/TradingView.js",
      "js/TradingConnector.js",
      "background.js",
      "lib/affiliate.js",
      "onInstalled.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "128": "icon-128.png"
    },
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "activeTab",
    "cookies",
    "storage",
    "identity",
    "identity.email",
    "webRequest",
    "webRequestBlocking",
    "https://*.tradingview.com/*",
    "https://www.googleapis.com/*",
    "https://*.paypal.com/*",
    "https://www.affiliatly.com/api_request.php",
    "https://www.tradingconnector.com/*"
  ],
  "oauth2": {
    "client_id": "634082229150-mm63e4lhbs3tr2jvd344j8q3qq2n08fq.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/chromewebstore.readonly"
    ]
  }
}