Press skip ad button!

Press skip ad button!

Automatically skip YT ads

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Press skip ad button!",
  "description": "Automatically skip YT ads",
  "version": "1.0",
  "icons": {
    "50": "skip.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "index.js"
      ]
    }
  ],
  "action": {
    "default_popup": "index.html",
    "default_icon": "skip.png"
  }
}