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": "Video Speed Controller Pro",
"version": "1.3.0",
"description": "Speed up or slow down videos on YouTube, Netflix & any site. Volume boost 400%, screenshots, A-B loop, filters & hotkeys.",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage",
"activeTab"
],
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_title": "Video Speed Pro"
},
"background": {
"service_worker": "background\/service-worker.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"browser-polyfill.min.js",
"content\/content.js"
],
"css": [
"content\/controller.css"
],
"run_at": "document_end",
"all_frames": true
}
],
"commands": {
"toggle-controller": {
"suggested_key": {
"default": "Alt+V"
},
"description": "Show\/Hide speed controller"
},
"increase-speed": {
"suggested_key": {
"default": "Alt+D"
},
"description": "Increase playback speed"
},
"decrease-speed": {
"suggested_key": {
"default": "Alt+S"
},
"description": "Decrease playback speed"
},
"reset-speed": {
"suggested_key": {
"default": "Alt+R"
},
"description": "Reset to normal speed"
}
},
"browser_specific_settings": {
"gecko": {
"id": "video-speed-controller@extension",
"strict_min_version": "109.0"
}
}
}