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,
"version": "1.2.0",
"name": "Video Speed Controller Plus",
"description": "Introducing Video Speed Controller Plus for Chrome, Firefox, and other browsers. Speed up or slow down videos on OTT platforms.",
"background": {
"service_worker": "background\/background.js"
},
"action": {
"default_popup": "index.html",
"default_icon": "icon64.png"
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"64": "icon64.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content\/content.js"
],
"css": [
"content\/content.css"
],
"run_at": "document_end",
"all_frames": true
}
],
"permissions": [
"storage",
"activeTab",
"notifications"
],
"commands": {
"left": {
"suggested_key": {
"default": "Ctrl+Shift+Left",
"mac": "Command+Shift+Left"
},
"description": "To decrease speed of video player"
},
"right": {
"suggested_key": {
"default": "Ctrl+Shift+Right",
"mac": "Command+Shift+Right"
},
"description": "To increase speed of video player"
},
"up": {
"suggested_key": {
"default": "Ctrl+Shift+Up",
"mac": "Command+Shift+Up"
},
"description": "To reset speed of video player"
}
}
}