RR Adblocker

RR Adblocker

Rutuj Runwal's Adblocker blocks ads and trackers to make your web surfing faster and safer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.1.8",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "declarativeNetRequest",
    "storage",
    "declarativeNetRequestFeedback"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "blockLIST",
        "enabled": true,
        "path": "/rules/default.json"
      },
      {
        "id": "advLIST",
        "enabled": false,
        "path": "/rules/adv.json"
      },
      {
        "id": "antiprnLIST",
        "enabled": false,
        "path": "/rules/antiprn.json"
      },
      {
        "id": "suspLIST",
        "enabled": false,
        "path": "/rules/susp.json"
      },
      {
        "id": "antitrackLIST",
        "enabled": false,
        "path": "/rules/antitrack.json"
      }
    ]
  },
  "icons": {
    "48": "./icons/ad48.png",
    "64": "./icons/ad64.png"
  },
  "content_scripts": [
    {
      "js": [
        "yt_blocks.js",
        "content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "action": {
    "default_popup": "Popup.html",
    "default_title": "RR Adblocker"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "manifest_version": 3
}