Skip button automation

Skip button automation

Automatically skip YouTube ads!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Skip button automation",
  "description": "Automatically skip YouTube ads!",
  "version": "0.0.1",
  "icons": {
    "100": "src/logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "action": {
    "default_icon": "src/logo.png",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}