Youtube Ad Skipper

Youtube Ad Skipper

Ad Skipper is gives you less interrupted online streaming and skip or removes ad on behalf of you. It does not block an ad.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube Ad Skipper",
  "version": "1.0.1",
  "description": "Ad Skipper is gives you less interrupted online streaming and skip or removes ad on behalf of you. It does not block an ad.",
  "permissions": [
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "skipper.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "icon16-disabled.png",
      "48": "icon48-disabled.png",
      "128": "icon128-disabled.png"
    }
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 3
}