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": "SpeedView - Video Speed Controller",
"version": "1.0.0",
"description": "SpeedView - video speed controller with overlay UI, keyboard shortcuts. Works on YouTube, Netflix, and all videos.",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle",
"all_frames": true
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"commands": {
"increase-speed": {
"suggested_key": {
"default": "Alt+Shift+D"
},
"description": "Increase video speed"
},
"decrease-speed": {
"suggested_key": {
"default": "Alt+Shift+S"
},
"description": "Decrease video speed"
},
"reset-speed": {
"suggested_key": {
"default": "Alt+Shift+R"
},
"description": "Reset video speed to 1x"
}
}
}