Auto Show Transcript for YouTube
Automatically shows transcript when watching YouTube videos.
Cos'è Auto Show Transcript for YouTube?
Auto Show Transcript for YouTube è un'estensione di Chrome sviluppata da jesseblackdeveloper, e la sua funzione principale è "Automatically shows transcript when watching YouTube videos.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Auto Show Transcript for YouTube
Scarica i file di estensione Auto Show Transcript for YouTube 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
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.
Informazioni di Base sull'Estensione
Nome | Auto Show Transcript for YouTube |
ID | ilfmalhfkahgpebchmdkldpgbkfhglip |
URL Ufficiale | https://chromewebstore.google.com/detail/auto-show-transcript-for/ilfmalhfkahgpebchmdkldpgbkfhglip |
Descrizione | Automatically shows transcript when watching YouTube videos. |
Dimensione del File | 25.29 KB |
Conteggio Installazioni | 456 |
Versione Corrente | 1.0.0.2 |
Ultimo Aggiornamento | 2023-03-21 |
Data di Pubblicazione | 2023-03-20 |
Valutazione | 3.67/5 Totale 3 Valutazioni |
Sviluppatore | jesseblackdeveloper |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |