HTML5 Video Speed Control

Speed controls for html5 video.

Was ist HTML5 Video Speed Control?

HTML5 Video Speed Control ist eine Chrome-Erweiterung, die von thebenedictchen entwickelt wurde, und ihr Hauptmerkmal ist "Speed controls for html5 video.".

Erweiterungsscreenshots

screenshot

HTML5 Video Speed Control-Erweiterungs-CRX-Datei herunterladen

Laden Sie HTML5 Video Speed Control-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name HTML5 Video Speed Control HTML5 Video Speed Control
ID ejdipbccipeloijefbkiakckfhdbgocg
Offizielle URL https://chrome.google.com/webstore/detail/html5-video-speed-control/ejdipbccipeloijefbkiakckfhdbgocg
Beschreibung Speed controls for html5 video.
Dateigröße 69.25 KB
Installationsanzahl 20,000
Aktuelle Version 1.42
Letztes Update 2017-11-18
Veröffentlichungsdatum 2017-11-18
Bewertung 3.93/5 Insgesamt 203 Bewertungen
Entwickler thebenedictchen
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://benedictchen.com
Unterstützte Sprachen 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
        }
    ]
}