Space Live Caption Viewer
View Twitter Space caption
Что такое Space Live Caption Viewer?
Space Live Caption Viewer - это расширение Chrome, разработанное akinori.oyama, и его основная функция - "View Twitter Space caption".
Снимки экрана расширения
Скачать файл CRX расширения Space Live Caption Viewer
Скачайте файлы расширений Space Live Caption Viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The extension will show the most part of current live caption in Twitter Space as a preliminary, tentative measure to expand the visible area in a separate area. Version 0.0.1.0 will show all the captions that include previously captioned lines. Version 0.0.1.2 automatically start space and its capturing of caption upon the availability of a space shown as outer circle of Twitter profile. The option is configurable under "Auto start space...".
Основная информация о расширении
Название | Space Live Caption Viewer |
ID | ambiinlkilpoeeolkiklengjdekaihog |
Официальный URL | https://chromewebstore.google.com/detail/space-live-caption-viewer/ambiinlkilpoeeolkiklengjdekaihog |
Описание | View Twitter Space caption |
Размер файла | 20.03 KB |
Количество установок | 137 |
Текущая Версия | 0.0.1.2 |
Последнее Обновление | 2022-07-05 |
Дата публикации | 2021-12-14 |
Разработчик | akinori.oyama |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://akinorioyama.com/live-caption-viewer |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Space Live Caption Viewer", "options_ui": { "page": "options.html", "open_in_tab": false, "js": "options.js" }, "description": "View Twitter Space caption", "version": "0.0.1.2", "icons": { "128": "icons\/icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "inject.js" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "options.js", "options.html", "icons\/icon_config.png", "icons\/icon_show.png" ], "matches": [ "https:\/\/twitter.com\/*" ] } ], "manifest_version": 3 } |