Twitch Chat TTS
TwitchTTS enable Text-To-Speech in any chat!
Cos'è Twitch Chat TTS?
Twitch Chat TTS è un'estensione di Chrome sviluppata da https://twitch-chat.com, e la sua funzione principale è "TwitchTTS enable Text-To-Speech in any chat!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch Chat TTS
Scarica i file di estensione Twitch Chat TTS 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
Text-To-Speech in any chat! No donations required :) Informazioni di Base sull'Estensione
| Nome | |
| ID | dieheoilmaghphpbpmlcbhecopohpbel |
| URL Ufficiale | https://chromewebstore.google.com/detail/twitch-chat-tts/dieheoilmaghphpbpmlcbhecopohpbel |
| Descrizione | TwitchTTS enable Text-To-Speech in any chat! |
| Dimensione del File | 33.13 KB |
| Conteggio Installazioni | 138 |
| Versione Corrente | 1.2 |
| Ultimo Aggiornamento | 2020-11-21 |
| Data di Pubblicazione | 2020-11-12 |
| Valutazione | 2.00/5 Totale 4 Valutazioni |
| Sviluppatore | https://twitch-chat.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twitch Chat TTS",
"version": "1.2",
"description": "TwitchTTS enable Text-To-Speech in any chat!",
"permissions": [
"declarativeContent",
"storage",
"http:\/\/www.twitch.tv\/*",
"https:\/\/www.twitch.tv\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"web_accessible_resources": [
"*.png",
"*.PNG"
],
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https:\/\/www.twitch.tv\/*"
],
"js": [
"content-load.js"
]
}
],
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/TwitchTTS16.png",
"32": "images\/TwitchTTS32.png",
"48": "images\/TwitchTTS48.png",
"128": "images\/TwitchTTS128.png"
}
},
"icons": {
"16": "images\/TwitchTTS16.png",
"32": "images\/TwitchTTS32.png",
"48": "images\/TwitchTTS48.png",
"128": "images\/TwitchTTS128.png"
},
"manifest_version": 2
} | |