Examine source code of YouTube Ad Skip & Mute

Inspect and view changes in YouTube Ad Skip & Mute source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "YouTube Ad Auto-skipper & Auto-mute",
  "short_name": "YT Ad Auto-skipper-mute",
  "description": "YouTube Ad Skipper is an extension that mute all ads and auto skips ads after YouTube provides a skip ad button. It does not block an ad.",
  "manifest_version": 2,
  "version": "0.6.0",
  "author": "Izan PĂ©rez Cosano",
  "homepage_url": "https://github.com/eperezcosano/yt-ad-autoskipper",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "skipad.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "icons": {
    "128": "logo.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{6712269b-6289-46fe-b6f3-8144f45afd5e}"
    }
  }
}