YT auto skip Ads

YT auto skip Ads

Automatically skips ads on Youtube, when possible ;)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YT auto skip Ads",
  "description": "Automatically skips ads on Youtube, when possible ;)",
  "version": "2.0",
  "manifest_version": 3,
  "icons": {
    "16": "/images/logo-16.png",
    "32": "/images/logo-32.png",
    "48": "/images/logo-48.png",
    "128": "/images/logo-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ]
}