Examine source code of BlockCoin

Inspect and view changes in BlockCoin 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",
  "name": "BlockCoin",
  "version": "1.0.1",
  "description": "BlockCoin is a browser extension designed to prevent cryptocurrency miners from operating within web browsers.",
  "manifest_version": 3,
  "author": "Felisha M. and Sharleen E.",
  "action": {
    "default_popup": "index.html",
    "default_title": "BlockCoin"
  },
  "background": {
    "service_worker": "script/background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "system.cpu",
    "webNavigation"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "19": "icons/19.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "options_page": "options.html"
}