YouTube Ad Skipper - automatic, 16x playspeed

YouTube Ad Skipper - automatic, 16x playspeed

🚀 Automatically skip all YouTube ads at lightning speed with 16x acceleration! 🚀

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.1",
  "name": "YouTube Ad Skipper - automatic, 16x playspeed",
  "description": "🚀 Automatically skip all YouTube ads at lightning speed with 16x acceleration! 🚀",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon100.png",
      "48": "images/icon100.png",
      "128": "images/icon100.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://www.youtube.com/*",
        "https://*.youtube.com/watch?*"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content2.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "images/icon100.png",
    "48": "images/icon100.png",
    "128": "images/icon100.png"
  }
}