Auto Show Transcript for YouTube

Automatically shows transcript when watching YouTube videos.

Hvad er Auto Show Transcript for YouTube?

Auto Show Transcript for YouTube er en Chrome-udvidelse udviklet af jesseblackdeveloper, og dens hovedfunktion er "Automatically shows transcript when watching YouTube videos.".

Udvidelsesskærmbilleder

screenshot

Download Auto Show Transcript for YouTube-udvidelses-CRX-fil

Download Auto Show Transcript for YouTube-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Auto Show Transcript for YouTube Auto Show Transcript for YouTube
ID ilfmalhfkahgpebchmdkldpgbkfhglip
Officiel URL https://chromewebstore.google.com/detail/auto-show-transcript-for/ilfmalhfkahgpebchmdkldpgbkfhglip
Beskrivelse Automatically shows transcript when watching YouTube videos.
Filstørrelse 25.29 KB
Antal Installationer 456
Nuværende Version 1.0.0.2
Senest Opdateret 2023-03-21
Udgivelsesdato 2023-03-20
Bedømmelse 3.67/5 Samlet 3 Bedømmelser
Udvikler jesseblackdeveloper
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}