Auto Show Transcript for YouTube

Automatically shows transcript when watching YouTube videos.

Co to jest Auto Show Transcript for YouTube?

Auto Show Transcript for YouTube to rozszerzenie Chrome opracowane przez jesseblackdeveloper, a jego główną funkcją jest „Automatically shows transcript when watching YouTube videos.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Auto Show Transcript for YouTube

Pobierz pliki rozszerzeń Auto Show Transcript for YouTube w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Auto Show Transcript for YouTube Auto Show Transcript for YouTube
ID ilfmalhfkahgpebchmdkldpgbkfhglip
Oficjalny URL https://chromewebstore.google.com/detail/auto-show-transcript-for/ilfmalhfkahgpebchmdkldpgbkfhglip
Opis Automatically shows transcript when watching YouTube videos.
Rozmiar pliku 25.29 KB
Liczba instalacji 456
Aktualna Wersja 1.0.0.2
Ostatnia Aktualizacja 2023-03-21
Data Publikacji 2023-03-20
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper jesseblackdeveloper
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}