Video Speed Controller

Control video speed of video's on any page with the simple chrome extension

What is Video Speed Controller?

Video Speed Controller is a Chrome extension developed by videospeedcontrollerpro, and its main feature is "Control video speed of video's on any page with the simple chrome extension".

Extension Screenshots

screenshot
screenshot

Download Video Speed Controller Extension CRX File

Download Video Speed Controller extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Control video speed of video's on any page with the simple chrome extension                    

Extension Basic Information

Name Video Speed Controller Video Speed Controller
ID gmbmliclljegcljoncmaoccifcfmkaem
Official URL https://chromewebstore.google.com/detail/video-speed-controller/gmbmliclljegcljoncmaoccifcfmkaem
Description Control video speed of video's on any page with the simple chrome extension
File Size 66.69 KB
Installation Count 3,218
Current Version 1.1
Last Updated 2023-06-29
Publish Date 2023-06-20
Rating 5.00/5 Total 1 Ratings
Developer videospeedcontrollerpro
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Speed Controller",
    "version": "1.1",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "32": "icon128.png",
            "64": "icon128.png",
            "128": "icon128.png"
        }
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "32": "icon128.png",
        "64": "icon128.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "commands": {
        "increase-speed": {
            "suggested_key": {
                "default": "Ctrl+Shift+Up"
            },
            "description": "Increase video speed"
        },
        "decrease-speed": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down"
            },
            "description": "Decrease video speed"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}