YouTube Player Speed Controls

Adds playback speed controls to player control bar.

Cos'è YouTube Player Speed Controls?

YouTube Player Speed Controls è un'estensione di Chrome sviluppata da Seishin4real, e la sua funzione principale è "Adds playback speed controls to player control bar.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Player Speed Controls

Scarica i file di estensione YouTube Player Speed Controls in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome YouTube Player Speed Controls YouTube Player Speed Controls
ID acibbdogpnpdfhhhhiofgegplmhhffgf
URL Ufficiale https://chromewebstore.google.com/detail/youtube-player-speed-cont/acibbdogpnpdfhhhhiofgegplmhhffgf
Descrizione Adds playback speed controls to player control bar.
Dimensione del File 14.8 KB
Conteggio Installazioni 975
Versione Corrente 1.0
Ultimo Aggiornamento 2019-05-02
Data di Pubblicazione 2019-05-02
Valutazione 4.29/5 Totale 17 Valutazioni
Sviluppatore Seishin4real
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}