Auto Show Transcript for YouTube

Automatically shows transcript when watching YouTube videos.

O que é Auto Show Transcript for YouTube?

Auto Show Transcript for YouTube é uma extensão do Chrome desenvolvida por jesseblackdeveloper, e sua principal característica é "Automatically shows transcript when watching YouTube videos.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Auto Show Transcript for YouTube

Baixe arquivos de extensão Auto Show Transcript for YouTube no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Auto Show Transcript for YouTube Auto Show Transcript for YouTube
ID ilfmalhfkahgpebchmdkldpgbkfhglip
URL Oficial https://chromewebstore.google.com/detail/auto-show-transcript-for/ilfmalhfkahgpebchmdkldpgbkfhglip
Descrição Automatically shows transcript when watching YouTube videos.
Tamanho do Arquivo 25.29 KB
Contagem de Instalações 456
Versão Atual 1.0.0.2
Última Atualização 2023-03-21
Data de Publicação 2023-03-20
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor jesseblackdeveloper
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}