HTML5 Video Speed Control

Speed controls for html5 video.

What is HTML5 Video Speed Control?

HTML5 Video Speed Control is a Chrome extension developed by thebenedictchen, and its main feature is "Speed controls for html5 video.".

Extension Screenshots

screenshot

Download HTML5 Video Speed Control Extension CRX File

Download HTML5 Video Speed Control 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

                        Watching videos and they're too slow for you?
Adds speed controls to any HTML5 video.  The controls have no limits on speed.


Created by Benedict Chen. If you like it, you can buy me a beer with PayPal.
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WXQKYYKPHWXHS


Open source!
Github: https://github.com/benedictchen/google-chrome-html5video-controls                    

Extension Basic Information

Name HTML5 Video Speed Control HTML5 Video Speed Control
ID ejdipbccipeloijefbkiakckfhdbgocg
Official URL https://chrome.google.com/webstore/detail/html5-video-speed-control/ejdipbccipeloijefbkiakckfhdbgocg
Description Speed controls for html5 video.
File Size 69.25 KB
Installation Count 20,000
Current Version 1.42
Last Updated 2017-11-18
Publish Date 2017-11-18
Rating 3.93/5 Total 203 Ratings
Developer thebenedictchen
Email [email protected]
Payment Type free
Extension Website http://benedictchen.com
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HTML5 Video Speed Control",
    "description": "Speed controls for html5 video.",
    "options_page": "options.html",
    "version": "1.42",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "speedcontrol.js"
            ],
            "all_frames": true
        }
    ]
}