Examine source code of Bomb Party Buddy

Inspect and view changes in Bomb Party Buddy 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
{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.2",
  "browser_specific_settings": {
    "gecko": {
      "id": "bombpartybuddy@nitrofun.eu"
    }
  },
  "default_locale": "en",
  "icons": {
    "48": "icons/icon48.png",
    "96": "icons/icon96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.jklm.fun/*"
      ],
      "js": [
        "content/Game.js",
        "content/bombpartybuddy.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content/injected.js",
        "words/*.txt"
      ],
      "matches": [
        "*://*.jklm.fun/*"
      ]
    }
  ]
}