Auto Show Transcript for YouTube

Automatically shows transcript when watching YouTube videos.

Co je Auto Show Transcript for YouTube?

Auto Show Transcript for YouTube je rozšíření Chrome vyvinuté jesseblackdeveloper, a jeho hlavní funkcí je „Automatically shows transcript when watching YouTube videos.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Auto Show Transcript for YouTube

Stáhněte si soubory rozšíření Auto Show Transcript for YouTube ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        I always open the transcript sidebar on YouTube while watching videos, and it gets tedious to select the menu and click "Show transcript" on each video. For whatever reason there is no built-in option to always show transcript, so if you are in the same situation, this extension automatically opens the transcript sidebar on YouTube.                    

Základní Informace o Rozšíření

Název Auto Show Transcript for YouTube Auto Show Transcript for YouTube
ID ilfmalhfkahgpebchmdkldpgbkfhglip
Oficiální URL https://chromewebstore.google.com/detail/auto-show-transcript-for/ilfmalhfkahgpebchmdkldpgbkfhglip
Popis Automatically shows transcript when watching YouTube videos.
Velikost souboru 25.29 KB
Počet instalací 456
Aktuální Verze 1.0.0.2
Poslední Aktualizace 2023-03-21
Datum Vydání 2023-03-20
Hodnocení 3.67/5 Celkem 3 Hodnocení
Vývojář jesseblackdeveloper
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Auto Show Transcript for YouTube",
    "version": "1.0.0.2",
    "description": "Automatically shows transcript when watching YouTube videos.",
    "host_permissions": [
        "https:\/\/www.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    }
}