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",
"name": "YouTube Quality ShortCut",
"manifest_version": 3,
"version": "2.0.1",
"description": "Control YouTube video quality with simple keyboard shortcuts or an intuitive slider.",
"background": {
"service_worker": "service-worker.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*",
"*:\/\/youtube.com\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/youtube.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon_16.png",
"24": "images\/icon_24.png",
"32": "images\/icon_32.png"
}
},
"icons": {
"16": "images\/icon_active_16.png",
"24": "images\/icon_active_24.png",
"32": "images\/icon_active_32.png"
},
"commands": {
"decrease_quality": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "Command+Shift+1"
},
"description": "1. Decrease Quality"
},
"increase_quality": {
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "Command+Shift+2"
},
"description": "2. Increase Quality"
},
"lowest_quality": {
"suggested_key": {
"default": "Ctrl+Shift+9",
"mac": "Command+Shift+9"
},
"description": "3. Lowest Quality"
},
"highest_quality": {
"suggested_key": {
"default": "Ctrl+Shift+0",
"mac": "Command+Shift+0"
},
"description": "4. Highest Quality"
}
},
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"control.js",
"popup.js"
]
}
]
}