YouTube Speed Control

Control the speed of YouTube videos!

Was ist YouTube Speed Control?

YouTube Speed Control ist eine Chrome-Erweiterung, die von https://avi12.com entwickelt wurde, und ihr Hauptmerkmal ist "Control the speed of YouTube videos!".

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

                        The one-stop solution for changing the speed of every video you watch on YouTube, including outside of YouTube.com!

Source code: https://github.com/avi12/youtube-speed-control                    

Grundlegende Informationen zur Erweiterung

Name YouTube Speed Control YouTube Speed Control
ID dmpbgbehgckaijcpmodinibhkdgbifif
Offizielle URL https://chromewebstore.google.com/detail/youtube-speed-control/dmpbgbehgckaijcpmodinibhkdgbifif
Beschreibung Control the speed of YouTube videos!
Dateigröße 83.99 KB
Installationsanzahl 336
Aktuelle Version 2.1.6
Letztes Update 2022-04-10
Veröffentlichungsdatum 2020-11-02
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler https://avi12.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://avi12.com
Hilfeseite URL https://github.com/avi12/youtube-speed-control/issues/new/choose
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Speed Control",
    "short_name": "YT Speed",
    "description": "Control the speed of YouTube videos!",
    "version": "2.1.6",
    "manifest_version": 3,
    "author": "avi12",
    "developer": {
        "name": "avi12",
        "url": "https:\/\/avi12.com\/youtube-speed-control"
    },
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "24": "images\/icon-24.png",
        "32": "images\/icon-32.png",
        "38": "images\/icon-38.png",
        "48": "images\/icon-48.png",
        "64": "images\/icon-64.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube-nocookie.com\/*"
            ],
            "js": [
                "build\/scripts\/ytsc-content-script-initialize.js"
            ],
            "css": [
                "build\/styles-injected\/main.css"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_title": "YouTube Speed Control",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "19": "images\/icon-19.png",
            "24": "images\/icon-24.png",
            "32": "images\/icon-32.png",
            "38": "images\/icon-38.png",
            "48": "images\/icon-48.png",
            "64": "images\/icon-64.png",
            "96": "images\/icon-96.png",
            "128": "images\/icon-128.png"
        }
    },
    "offline_enabled": true,
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}