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": "Speed Tune \u2013 Video Playback Speed Controller",
"version": "1.0.0",
"description": "Control video playback speed on any website. Speed up or slow down videos with precision controls, shortcuts, and overlays.",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "popup.html",
"default_title": "Speed Tune",
"default_icon": {
"16": "images\/speed_tune_logo.png",
"32": "images\/speed_tune_logo.png",
"48": "images\/speed_tune_logo.png",
"128": "images\/speed_tune_logo.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"commands": {
"increase-speed-small": {
"suggested_key": {
"default": "Ctrl+Period"
},
"description": "Increase speed by 0.1x"
},
"decrease-speed-small": {
"suggested_key": {
"default": "Ctrl+Comma"
},
"description": "Decrease speed by 0.1x"
},
"increase-speed-large": {
"suggested_key": {
"default": "Ctrl+Shift+Period"
},
"description": "Increase speed by 1x"
},
"reset-speed": {
"suggested_key": {
"default": "Ctrl+Shift+Comma"
},
"description": "Reset to 1x speed"
}
},
"icons": {
"16": "images\/speed_tune_logo.png",
"32": "images\/speed_tune_logo.png",
"48": "images\/speed_tune_logo.png",
"128": "images\/speed_tune_logo.png"
}
}