YouTube Accelerator

Accelerate your YouTube videos even faster!

Cos'è YouTube Accelerator?

YouTube Accelerator è un'estensione di Chrome sviluppata da AndrewGDX, e la sua funzione principale è "Accelerate your YouTube videos even faster!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione YouTube Accelerator

Scarica i file di estensione YouTube Accelerator 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

                        There is no UI, only keyboard shortcuts. Use '<' and '>' buttons (without shift) to speed up or speed down the video, and press 'R' to reset to the default speed. You can change hotkeys in settings. YouTube Shorts acceleration is working as well.

The plugin does not collect any statistics or personal data, feel free to use!

Source code: https://github.com/AndrewGDX/YouTubeAccelerator                    

Informazioni di Base sull'Estensione

Nome YouTube Accelerator YouTube Accelerator
ID kkbkajnjcpgpfkhgkcckeaindpjgfgib
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-accelerator/kkbkajnjcpgpfkhgkcckeaindpjgfgib
Descrizione Accelerate your YouTube videos even faster!
Dimensione del File 14.29 KB
Conteggio Installazioni 251
Versione Corrente 0.6.0
Ultimo Aggiornamento 2023-07-20
Data di Pubblicazione 2022-10-30
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore AndrewGDX
Email [email protected]
URL della Pagina della Politica sulla Privacy https://andrewgdx.github.io/ChromeWebStorePolicy
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Accelerator",
    "version": "0.6.0",
    "description": "Accelerate your YouTube videos even faster!",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "accelerator.css"
            ],
            "js": [
                "accelerator_plugin.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "settings.html"
    },
    "manifest_version": 3
}