HTML5 Video Speed Control

Speed controls for html5 video.

Co to jest HTML5 Video Speed Control?

HTML5 Video Speed Control to rozszerzenie Chrome opracowane przez thebenedictchen, a jego główną funkcją jest „Speed controls for html5 video.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia HTML5 Video Speed Control

Pobierz pliki rozszerzeń HTML5 Video Speed Control w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa HTML5 Video Speed Control HTML5 Video Speed Control
ID ejdipbccipeloijefbkiakckfhdbgocg
Oficjalny URL https://chrome.google.com/webstore/detail/html5-video-speed-control/ejdipbccipeloijefbkiakckfhdbgocg
Opis Speed controls for html5 video.
Rozmiar pliku 69.25 KB
Liczba instalacji 20,000
Aktualna Wersja 1.42
Ostatnia Aktualizacja 2017-11-18
Data Publikacji 2017-11-18
Ocena 3.93/5 Łącznie 203 Oceny
Deweloper thebenedictchen
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://benedictchen.com
Obsługiwane Języki 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
        }
    ]
}