YouTube Player Speed Controls

Adds playback speed controls to player control bar.

Co to jest YouTube Player Speed Controls?

YouTube Player Speed Controls to rozszerzenie Chrome opracowane przez Seishin4real, a jego główną funkcją jest „Adds playback speed controls to player control bar.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YouTube Player Speed Controls

Pobierz pliki rozszerzeń YouTube Player Speed Controls 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

                        Adds playback speed controls to the control bar of the youtube player.                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Player Speed Controls YouTube Player Speed Controls
ID acibbdogpnpdfhhhhiofgegplmhhffgf
Oficjalny URL https://chromewebstore.google.com/detail/youtube-player-speed-cont/acibbdogpnpdfhhhhiofgegplmhhffgf
Opis Adds playback speed controls to player control bar.
Rozmiar pliku 14.8 KB
Liczba instalacji 975
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-05-02
Data Publikacji 2019-05-02
Ocena 4.29/5 Łącznie 17 Oceny
Deweloper Seishin4real
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Player Speed Controls",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Adds playback speed controls to player control bar.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon48.png"
    },
    "permissions": [
        "storage",
        "*:\/\/www.youtube.com\/*"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "scripts\/scripts.js"
            ]
        }
    ]
}