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": "Controls for YouTube",
"version": "1.2.5",
"description": "Add configurable keyboard shortcuts and customizations to the YouTube player.",
"host_permissions": [
"https:\/\/youtube.com\/*",
"https:\/\/www.youtube.com\/*",
"https:\/\/content-youtube.googleapis.com\/*"
],
"action": {
"default_icon": {
"16": "icon-16.png",
"48": "icon-48.png",
"96": "icon-96.png",
"128": "icon-128.png"
}
},
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"96": "icon-96.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/youtube.com\/*",
"https:\/\/www.youtube.com\/*",
"https:\/\/content-youtube.googleapis.com\/*"
],
"js": [
"js\/vendor.js",
"js\/content-script.js"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"background": {
"service_worker": "js\/background.js"
},
"permissions": [
"storage",
"tabs",
"activeTab",
"scripting"
]
}