Youtube Ad Skipper

Youtube Ad Skipper

Are you tired of clicking on Skip Ad button on Youtube Videos? We have been through this too. That's why we decided to make this…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Youtube Ad Skipper",
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "skip_16.png",
    "48": "skip_48.png",
    "128": "skip_128.png"
  }
}