YouTube Default Playback Speed

Set the default playback speed for YouTube videos! Complete with hotkeys to manipulate the current video speed.

Τι είναι το YouTube Default Playback Speed;

Το YouTube Default Playback Speed είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον NotYourAppDev, και η κύρια λειτουργία του είναι "Set the default playback speed for YouTube videos! Complete with hotkeys to manipulate the current video speed.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Default Playback Speed

Λήψη αρχείων επέκτασης YouTube Default Playback Speed σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The main popup for the extension allows you to set the default playback speed for YouTube videos along with buttons to set the speed of the video in the current tab to half, normal, and double speed. The main settings popup shown in the screen shots is only active on YouTube video pages. The extension also provides hotkeys for quickly changing the speed of the video in the current tab:

Alt+Shift+1 sets the current tab to normal speed
Alt+Shift+2 sets the current tab to set default speed
Alt+Shift+Up increases the current tab by a the specified increment speed
Alt+Shift+Down decreases the current tab by the specified increment speed

Please let me know what other features you'd like.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα YouTube Default Playback Speed YouTube Default Playback Speed
ID bcogakegjkeopbkokbkkaopnclmhhfmp
Επίσημο URL https://chromewebstore.google.com/detail/youtube-default-playback/bcogakegjkeopbkokbkkaopnclmhhfmp
Περιγραφή Set the default playback speed for YouTube videos! Complete with hotkeys to manipulate the current video speed.
Μέγεθος Αρχείου 17.75 KB
Αριθμός Εγκαταστάσεων 2,758
Τρέχουσα Έκδοση 3.0.2
Τελευταία Ενημέρωση 2024-02-13
Ημερομηνία Δημοσίευσης 2020-04-24
Αξιολόγηση 4.00/5 Συνολικά 40 Αξιολογήσεις
Προγραμματιστής NotYourAppDev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Default Playback Speed",
    "description": "Set the default playback speed for YouTube videos! Complete with hotkeys to manipulate the current video speed.",
    "version": "3.0.2",
    "permissions": [
        "storage",
        "tabs",
        "commands"
    ],
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/youtube_playback16.png",
            "32": "images\/youtube_playback32.png",
            "48": "images\/youtube_playback48.png",
            "128": "images\/youtube_playback128.png"
        }
    },
    "background": {
        "service_worker": "scripts\/worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ],
            "run_at": "document_end"
        }
    ],
    "commands": {
        "increment-speed": {
            "suggested_key": {
                "default": "Alt+Shift+Up"
            },
            "description": "Increase the speed of the current video by increment."
        },
        "decrement-speed": {
            "suggested_key": {
                "default": "Alt+Shift+Down"
            },
            "description": "Decrease the speed of the current video by increment."
        },
        "set-speed-1": {
            "suggested_key": {
                "default": "Alt+Shift+1"
            },
            "description": "Set the speed of the video in the current tab to 1x."
        },
        "set-speed-default": {
            "suggested_key": {
                "default": "Alt+Shift+2"
            },
            "description": "Set the speed of the video in the current tab to your specified default speed."
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "html\/time_ui.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}