Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Printscreen YouTube",
"version": "0.0.1",
"description": "Take a printscreen of any YouTube video.",
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"page.js"
],
"css": [
"style.css"
],
"run_at": "document_end"
}
],
"commands": {
"ss": {
"suggested_key": "Alt+S",
"description": "Screenshot"
}
},
"permissions": [
"webNavigation",
"storage",
"scripting",
"tabs"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*"
],
"icons": {
"16": "assets\/img\/16.png",
"24": "assets\/img\/24.png",
"32": "assets\/img\/32.png",
"48": "assets\/img\/48.png",
"64": "assets\/img\/64.png",
"128": "assets\/img\/128.png"
}
}