YouTube™ Ad Skip

YouTube™ Ad Skip

Automatically skip ads and removes graphic ads from Youtube

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "[email protected]",
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/128.png",
    "default_title": "YouTube™ Ad Skip",
    "default_popup": "popup.html"
  },
  "description": "Automatically skip ads and removes graphic ads from Youtube",
  "icons": {
    "32": "icons/32.png",
    "38": "icons/38.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "js/jquery-3.0.0.min.js",
        "js/logger.js",
        "js/toastr.min.js",
        "js/ytbjs.js"
      ],
      "css": [
        "css/toastr.min.css"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2,
  "name": "YouTube™ Ad Skip",
  "version": "2.2"
}