Youtube speed control

This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?

Cos'è Youtube speed control?

Youtube speed control è un'estensione di Chrome sviluppata da wwf4, e la sua funzione principale è "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube speed control

Scarica i file di estensione Youtube speed control 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

                        ctrl + > - to speed up video
ctrl + < - to slow down video
ctrl + ? - to return x1 speed;                    

Informazioni di Base sull'Estensione

Nome Youtube speed control Youtube speed control
ID gdnknkknodmhgpompjfmhcodhcnamldo
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-speed-control/gdnknkknodmhgpompjfmhcodhcnamldo
Descrizione This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?
Dimensione del File 70.77 KB
Conteggio Installazioni 623
Versione Corrente 1.1
Ultimo Aggiornamento 2017-11-10
Data di Pubblicazione 2017-11-10
Valutazione 4.75/5 Totale 4 Valutazioni
Sviluppatore wwf4
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube speed control",
    "description": "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?",
    "version": "1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/www.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "all_frames": true
        }
    ]
}