Examine source code of YouTube Video Branding Image Remover

Inspect and view changes in YouTube Video Branding Image Remover 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
{
  "manifest_version": 2,
  "name": "YouTube Video Branding Image Remover",
  "author": "danic",
  "version": "1.0",
  "permissions": [
    "*://www.youtube.com/*"
  ],
  "content_scripts": [
    {
      "js": [
        "script.js"
      ],
      "run_at": "document_end",
      "matches": [
        "*://www.youtube.com/*"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "icons": {
    "32": "icons/image.png",
    "48": "icons/image.png",
    "64": "icons/image.png",
    "96": "icons/image.png",
    "128": "icons/image.png",
    "256": "icons/image.png"
  }
}