Easy Redirect && prevent Cryptojacking

Easy Redirect && prevent Cryptojacking

Block harmful's sites and redirect URL's.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Easy Redirect && prevent Cryptojacking",
  "description": "Block harmful's sites and redirect URL's.",
  "version": "3.7.0",
  "background": {
    "service_worker": "service-worker.js"
  },
  "icons": {
    "19": "assets/icon_128x128.png",
    "38": "assets/icon_128x128.png",
    "128": "assets/icon_128x128.png"
  },
  "action": {
    "default_title": "Show configuration!",
    "default_popup": "index.html#/popup"
  },
  "options_page": "index.html#configuration",
  "permissions": [
    "tabs",
    "declarativeNetRequest",
    "storage"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "anti-mining",
        "enabled": true,
        "path": "assets/rules.json"
      }
    ]
  },
  "short_name": "ER",
  "update_url": "https://clients2.google.com/service/update2/crx"
}