AdsSkip - Ad blocker and tracking.

AdsSkip - Ad blocker and tracking.

Block ads, pop-ups and tracking on YouTube, Facebook, Twitch and all your favorite websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AdsSkip - Ad blocker and tracking.",
  "description": "Block ads, pop-ups and tracking on YouTube, Facebook, Twitch and all your favorite websites.",
  "version": "1.0.1",
  "background": {
    "service_worker": "background.js"
  },
  "sandbox": {
    "extension_page": "script-src 'self' 'wasm-unsafe-eval' 'unsafe-inline'; object-src 'self'"
  },
  "action": {
    "default_icon": {
      "48": "assets/images/icon-logo-48.png",
      "128": "assets/images/icon-logo-128.png"
    },
    "default_title": "Click Me",
    "default_popup": "index.html#/popup"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "worker.js",
        "runtime.197b69cec03fb334.js",
        "polyfills.9f933c8cb8e4da10.js",
        "main.3df4567e98d97272.js",
        "yt-content.js"
      ],
      "matches": [
        "*://*/*",
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "48": "assets/images/icon-logo-48.png",
    "128": "assets/images/icon-logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "worker.js"
      ],
      "css": [
        "assets/global.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "host_permissions": [
    "*://*/*",
    "*://localhost/*",
    "*://127.0.0.1/*"
  ],
  "manifest_version": 3,
  "permissions": [
    "declarativeNetRequest"
  ]
}