YouTube studio livestreaming chat TTS
This extension reads every message on YouTube live chat when you livestreaming.
O que é YouTube studio livestreaming chat TTS?
YouTube studio livestreaming chat TTS é uma extensão do Chrome desenvolvida por lowen.i.v, e sua principal característica é "This extension reads every message on YouTube live chat when you livestreaming.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube studio livestreaming chat TTS
Baixe arquivos de extensão YouTube studio livestreaming chat TTS 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
# YouTube studio livestreaming chat TTS This extension reads every message on YouTube live chat when you livestreaming. # Features * CLEAR QUEUE PRESS ESC * PAUSE USE YOUR MIC OR PRESS space * support for removing messages * possibility to set delay between messages * reading emojis # Support Currently it support Google Chrome.
Informações Básicas da Extensão
Nome | YouTube studio livestreaming chat TTS |
ID | jalppohegcfklglkihmhdadmjindneij |
URL Oficial | https://chromewebstore.google.com/detail/youtube-studio-livestream/jalppohegcfklglkihmhdadmjindneij |
Descrição | This extension reads every message on YouTube live chat when you livestreaming. |
Tamanho do Arquivo | 49 KB |
Contagem de Instalações | 228 |
Versão Atual | 0.0.0.2 |
Última Atualização | 2021-02-16 |
Data de Publicação | 2021-02-07 |
Classificação | 2.00/5 Total de 3 Avaliações |
Desenvolvedor | lowen.i.v |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "name": "YouTube studio livestreaming chat TTS", "description": "This extension reads every message on YouTube live chat when you livestreaming.", "version": "0.0.0.2", "author": "ileowin", "browser_action": { "default_popup": "options.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/studio.youtube.com\/video\/*\/livestreaming*" ], "js": [ "jquery-3.2.0.min.js", "script.js" ], "all_frames": true } ], "options_ui": { "page": "options.html", "chrome_style": true }, "web_accessible_resources": [ "options.html" ] } |