Examine source code of BombStats Bombcript

Inspect and view changes in BombStats Bombcript source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BombStats Bombcript",
  "version": "1.6",
  "description": "Extensão para o site bombstats.com.br sincronizar com jogo bombcrypto.io ",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "host_permissions": [
    "https://*.bombcrypto.io/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.bombcrypto.io/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "world": "MAIN"
    },
    {
      "matches": [
        "https://*.bombcrypto.io/*"
      ],
      "js": [
        "second.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/16x16.png",
      "48": "icons/48x48.png",
      "128": "icons/128x128.png"
    }
  }
}