Botmakers for Chrome

Botmakers for Chrome

Get insights about Facebook Messenger bots!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Botmakers for Chrome",
  "version": "1.03",
  "description": "Get insights about Facebook Messenger bots!",
  "manifest_version": 2,
  "options_page": "options.html",
  "permissions": [
    "storage",
    "declarativeContent",
    "activeTab",
    "*://www.messenger.com/*",
    "*://www.facebook.com/*"
  ],
  "background": {
    "scripts": [
      "scripts/jquery/3.3.1/jquery.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.botmakers.net/*"
      ],
      "js": [
        "scripts/jquery/3.3.1/jquery.min.js",
        "scripts/predictline.js"
      ]
    }
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/logo.png",
      "32": "images/logo.png",
      "48": "images/logo.png",
      "128": "images/logo.png"
    }
  },
  "icons": {
    "16": "images/logo.png",
    "32": "images/logo.png",
    "48": "images/logo.png",
    "128": "images/logo.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}