Network Privacy Shield - Best Ad Blocker

Network Privacy Shield - Best Ad Blocker

Block All Ads, Pop-Ups And Stop Trackers Using Best Free Ad Blocker Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "version": "1.0.2",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "./icons/16.png",
    "32": "./icons/32.png",
    "48": "./icons/48.png",
    "128": "./icons/128.png"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "generic_rules",
        "enabled": true,
        "path": "data/rules/rules_1.json"
      },
      {
        "id": "g_rules",
        "enabled": true,
        "path": "data/rules/rules_2.json"
      },
      {
        "id": "y_rules",
        "enabled": true,
        "path": "data/rules/y.json"
      },
      {
        "id": "feedback_rules",
        "enabled": true,
        "path": "data/rules/feedback.json"
      },
      {
        "id": "rls_main",
        "enabled": true,
        "path": "data/rules/rls_main.json"
      },
      {
        "id": "ad_blocker",
        "enabled": true,
        "path": "adBlockerRule.json"
      },
      {
        "id": "tracker_blocker",
        "enabled": true,
        "path": "trackerBlockerRule.json"
      }
    ]
  },
  "action": {
    "default_icon": "./icons/128.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/contentscript.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "data/content/y.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/*.css",
        "icons/*.png",
        "js/*.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "permissions": [
    "declarativeNetRequest",
    "storage",
    "browsingData"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ]
}