Twitch Chat TTS
TwitchTTS enable Text-To-Speech in any chat!
什么是Twitch Chat TTS?
Twitch Chat TTS是由https://twitch-chat.com开发的Chrome扩展程序,该扩展的主要功能是“TwitchTTS enable Text-To-Speech in any chat!”。
扩展截图
下载Twitch Chat TTS扩展crx文件
下载Twitch Chat TTS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Text-To-Speech in any chat! No donations required :) 扩展基本信息
| 名称 | |
| ID | dieheoilmaghphpbpmlcbhecopohpbel |
| 官方URL | https://chromewebstore.google.com/detail/twitch-chat-tts/dieheoilmaghphpbpmlcbhecopohpbel |
| 简介 | TwitchTTS enable Text-To-Speech in any chat! |
| 文件大小 | 33.13 KB |
| 安装次数 | 138 |
| 当前版本 | 1.2 |
| 更新时间 | 2020-11-21 |
| 上架时间 | 2020-11-12 |
| 评分 | 2.00/5 共4次评分 |
| 开发者 | https://twitch-chat.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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
} | |