Take a screenshot of any YouTube video with one click.
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": 3,
"name": "Screenshot YouTube New",
"version": "2.5.0",
"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",
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"content_scripts": [
{
"js": [
"assets/page.js-loader-6cd7026a.js"
],
"matches": [
"https://www.youtube.com/*"
],
"css": [
"style.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"matches": [
"https://www.youtube.com/*"
],
"resources": [
"camera.svg",
"style.css",
"assets/page.js-d4f38642.js"
],
"use_dynamic_url": false
}
],
"permissions": [
"webNavigation",
"storage",
"scripting"
],
"host_permissions": [
"https://www.youtube.com/*"
],
"content_security_policy": {},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}