Examine source code of AdsSkip - Ad blocker and tracking.

Inspect and view changes in AdsSkip - Ad blocker and tracking. source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
  ]
}