YouTube 'Skip' Automation

YouTube 'Skip' Automation

Automatically clicks 'Skip' button wherever available on YouTube, also removes ad banners.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "AdFree YouTube",
  "description": "Removes all annoying Ads and Banners from YouTube [AdBlocker for YouTube]",
  "version": "1.3.0",
  "icons": {
    "96": "icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/index.html"
  },
  "permissions": [
    "storage"
  ]
}