Bignest Privacy Guard & AdBlocker

Bignest Privacy Guard & AdBlocker

Block YouTube™ ads, pop-ups and improve your privacy! Using Chrome manifest v3.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.7.9",
  "name": "Bignest Privacy Guard & AdBlocker",
  "manifest_version": 3,
  "description": "Block YouTube™ ads, pop-ups and improve your privacy! Using Chrome manifest v3.",
  "action": {
    "default_title": "Bignest Privacy Guard",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/favicon/icon-16.png",
    "48": "img/favicon/icon-48.png",
    "128": "img/favicon/icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "cs.js"
      ],
      "matches": [
        "<all_urls>",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "js/modules/adblock.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://bignest.com/*",
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/modules/sdk.js",
        "js/content_script.js",
        "js/modules/adblock_content.js"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "permissions": [
    "activeTab",
    "webRequest",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "storage"
  ],
  "optional_permissions": [],
  "host_permissions": [
    "<all_urls>",
    "https://bignest.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; worker-src 'self' 'wasm-unsafe-eval'; script-src 'self' 'wasm-unsafe-eval'; connect-src http://localhost:3100 https://localhost:3100; style-src * 'unsafe-inline' 'self' blob:; font-src *; img-src * chrome://favicon/ 'self' data:; object-src 'self';"
  }
}