YouTube Ad Auto-Closer

YouTube Ad Auto-Closer

Close the YouTube's ad banners and video ads after X seconds.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_globs": [],
      "include_globs": [
        "*youtube.com*"
      ],
      "js": [
        "includes/jquery-3.7.0.min.js",
        "includes/jquery.hotkeys.js",
        "includes/youtube.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Automatically close ads after X seconds",
  "icons": {
    "128": "icon.png"
  },
  "manifest_version": 2,
  "name": "YouTube Ad Auto-Closer",
  "short_name": "YT Ad Auto-Closer",
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "https://www.google-analytics.com/"
  ],
  "version": "1.3.22",
  "web_accessible_resources": [
    "includes/jquery-3.7.0.min.js",
    "includes/jquery.hotkeys.js",
    "includes/youtube.js",
    "jquery-3.7.0.min.map"
  ]
}