ChatBot

ChatBot

BeSocial chat bot

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatBot",
  "description": "BeSocial chat bot",
  "version": "2.0.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "./background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "./ex_16.png",
    "48": "./ex_48.png",
    "128": "./ex_128.png"
  },
  "action": {
    "default_popup": "./index.html",
    "default_icons": {
      "16": "./ex_16.png",
      "48": "./ex_48.png",
      "128": "./ex_128.png"
    }
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://goldenbride.net/*",
    "*://api.besocial.tech/*",
    "*://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  }
}