Examine source code of Roblox Profile Alt Checker

Inspect and view changes in Roblox Profile Alt Checker 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": 2,
  "name": "Roblox Profile Alt Checker",
  "version": "0.4",
  "description": "A Firefox extension to display alt percentage on Roblox profiles.",
  "permissions": [
    "https://www.roblox.com/*",
    "https://roblox.com/*",
    "https://altcheck-demo.fiddllepat.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.roblox.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_popup": "page.html",
    "default_icon": "icon16.png"
  },
  "icons": {
    "16": "icon16.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "altchecker@robloxprofiles.com",
      "strict_min_version": "58.0"
    }
  }
}