BinoBot - AI Powered Trading

BinoBot - AI Powered Trading

Smart AI trading bot that automates your investing process. Start trading now!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "BinoBot",
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_title__"
  },
  "default_locale": "en",
  "description": "__MSG_desc__",
  "icons": {
    "16": "botIcons/16x16_off.png",
    "32": "botIcons/32x32_off.png",
    "48": "botIcons/48x48_off.png",
    "64": "botIcons/64x64_off.png",
    "128": "botIcons/128x128_off.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/content.js",
        "/index.html",
        "/background.js",
        "/binomobotSiteContent.js",
        "/registrationPage.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3,
  "name": "__MSG_name__",
  "short_name": "__MSG_shortname__",
  "permissions": [
    "tabs",
    "cookies",
    "webRequest",
    "gcm",
    "storage",
    "notifications",
    "identity",
    "alarms"
  ],
  "host_permissions": [
    "wss://*/*",
    "https://*.branch.io/*",
    "https://binomo.com/*",
    "*://*.binomo.com/*",
    "https://api.binomo.com/*",
    "https://promo.binomobot.com/*",
    "https://bst.ppnet.systems/*",
    "https://binomobot.com/*",
    "https://api.binomobot.com/*",
    "https://marketing.work.ppnet.io/*",
    "https://binobot.co/*",
    "https://assets.binobot.co/*",
    "https://api.binobot.co/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://binomo.com/*/registration_new*"
      ],
      "js": [
        "registrationPage.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://binomo.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://binomobot.com/*"
      ],
      "js": [
        "binomobotSiteContent.js"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "version": "6.2.2"
}