Examine source code of YouTube Snapshot New

Inspect and view changes in YouTube Snapshot New 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 Screenshot",
  "description": "Take screenshots from YouTube Video & Shorts",
  "version": "4.0.0",
  "icons": {
    "96": "icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options/index.html"
  },
  "permissions": [
    "storage",
    "clipboardWrite",
    "notifications"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{ff40dde3-3e7b-4643-b5e4-ac6c18d2c7a5}"
    }
  }
}