Coin Miner Block

Coin Miner Block

Chrome extension that blocks cryptocurrency miners all over the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Coin Miner Block",
  "description": "Chrome extension that blocks cryptocurrency miners all over the web.",
  "homepage_url": "https://coinblocker.info/",
  "version": "1.2.1",
  "icons": {
    "128": "src/img/icon.png"
  },
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "src/overview.html"
  },
  "background": {
    "scripts": [
      "src/js/block.js"
    ],
    "persistent": true
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "storage",
    "notifications",
    "tabs"
  ]
}