Youtube speed control

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

Hvad er Youtube speed control?

Youtube speed control er en Chrome-udvidelse udviklet af wwf4, og dens hovedfunktion er "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?".

Udvidelsesskærmbilleder

screenshot

Download Youtube speed control-udvidelses-CRX-fil

Download Youtube speed control-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Youtube speed control Youtube speed control
ID gdnknkknodmhgpompjfmhcodhcnamldo
Officiel URL https://chrome.google.com/webstore/detail/youtube-speed-control/gdnknkknodmhgpompjfmhcodhcnamldo
Beskrivelse This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?
Filstørrelse 70.77 KB
Antal Installationer 623
Nuværende Version 1.1
Senest Opdateret 2017-11-10
Udgivelsesdato 2017-11-10
Bedømmelse 4.75/5 Samlet 4 Bedømmelser
Udvikler wwf4
Betalingsmetode free
Understøttede Sprog 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
        }
    ]
}