Auto Show Transcript for YouTube
Automatically shows transcript when watching YouTube videos.
Что такое Auto Show Transcript for YouTube?
Auto Show Transcript for YouTube - это расширение Chrome, разработанное jesseblackdeveloper, и его основная функция - "Automatically shows transcript when watching YouTube videos.".
Снимки экрана расширения
Скачать файл CRX расширения Auto Show Transcript for YouTube
Скачайте файлы расширений Auto Show Transcript for YouTube в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Auto Show Transcript for YouTube |
ID | ilfmalhfkahgpebchmdkldpgbkfhglip |
Официальный URL | https://chromewebstore.google.com/detail/auto-show-transcript-for/ilfmalhfkahgpebchmdkldpgbkfhglip |
Описание | Automatically shows transcript when watching YouTube videos. |
Размер файла | 25.29 KB |
Количество установок | 456 |
Текущая Версия | 1.0.0.2 |
Последнее Обновление | 2023-03-21 |
Дата публикации | 2023-03-20 |
Рейтинг | 3.67/5 Всего 3 оценок |
Разработчик | jesseblackdeveloper |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" } } |