IQ Trading Bot

IQ Trading Bot

Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Extension",
  "version": "0.0.1",
  "name": "IQ Trading Bot",
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://eu.iqoption.com/traderoom",
        "https://iqoption.com/*",
        "https://tr-iqoption.com/*",
        "https://id-iqoption.com/*",
        "http://iqtrading.as/*"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "permissions": [
    "cookies",
    "https://*/*",
    "http://*/*",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "web_accessible_resources": [
    "manifest.json"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}