Youtube speed control

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

Was ist Youtube speed control?

Youtube speed control ist eine Chrome-Erweiterung, die von wwf4 entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?".

Erweiterungsscreenshots

screenshot

Youtube speed control-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube speed control-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Youtube speed control Youtube speed control
ID gdnknkknodmhgpompjfmhcodhcnamldo
Offizielle URL https://chrome.google.com/webstore/detail/youtube-speed-control/gdnknkknodmhgpompjfmhcodhcnamldo
Beschreibung This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?
Dateigröße 70.77 KB
Installationsanzahl 623
Aktuelle Version 1.1
Letztes Update 2017-11-10
Veröffentlichungsdatum 2017-11-10
Bewertung 4.75/5 Insgesamt 4 Bewertungen
Entwickler wwf4
Zahlungsart free
Unterstützte Sprachen 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
        }
    ]
}