Screenshot YouTube

Screenshot YouTube

Take a screenshot of any YouTube video with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Screenshot YouTube",
  "version": "1.0.0.0",
  "manifest_version": 3,
  "description": "Take a screenshot of any YouTube video with one click.",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "js": [
        "page.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "webNavigation",
    "storage",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "https://www.youtube.com/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}