Examine source code of Instagram Account Bouncer

Inspect and view changes in Instagram Account Bouncer 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": "Instagram Account Bouncer",
  "version": "1.0",
  "description": "Only allows specified accounts to be shown",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.instagram.com/*"
      ],
      "js": [
        "block_accounts.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "your.extension1209380123@example.com"
    }
  }
}