YT Skip Ads

YT Skip Ads

This extension attempts to skip the YouTube ads automatically

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YT Skip Ads",
  "description": "This extension attempts to skip the YouTube ads automatically",
  "version": "1.0",
  "page_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "YouTube Skip Ads"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "css": [
        "src/css/main.css"
      ],
      "js": [
        "src/js/dom-watcher.js"
      ],
      "run_at": "document_end"
    }
  ]
}