HTML5 Video Speed Control

Speed controls for html5 video.

Vad är HTML5 Video Speed Control?

HTML5 Video Speed Control är en Chrome-tillägg utvecklad av thebenedictchen, och dess huvudfunktion är "Speed controls for html5 video.".

Tilläggsskärmbilder

screenshot

Ladda ner HTML5 Video Speed Control-förlängningens CRX-fil

Ladda ner HTML5 Video Speed Control-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn HTML5 Video Speed Control HTML5 Video Speed Control
ID ejdipbccipeloijefbkiakckfhdbgocg
Officiell webbadress https://chrome.google.com/webstore/detail/html5-video-speed-control/ejdipbccipeloijefbkiakckfhdbgocg
Beskrivning Speed controls for html5 video.
Filstorlek 69.25 KB
Antal Installationer 20,000
Aktuell Version 1.42
Senast Uppdaterad 2017-11-18
Publiceringsdatum 2017-11-18
Betyg 3.93/5 Totalt 203 Betyg
Utvecklare thebenedictchen
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://benedictchen.com
Stödda Språk 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
        }
    ]
}