Skippy - The Best Youtube Ad Skipper

Skippy - The Best Youtube Ad Skipper

Automatically skip youtube ads the moment they appear

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Skippy - The Best Youtube Ad Skipper",
  "version": "1.0",
  "description": "Automatically skip youtube ads the moment they appear",
  "content_scripts": [
    {
      "js": [
        "script.js"
      ],
      "run_at": "document_idle",
      "matches": [
        "https://*.youtube.com/*"
      ]
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  }
}