I Hear You Twitch
Plays a sound when new message comes in Twitch chat
什么是I Hear You Twitch?
I Hear You Twitch是由Chih-Hsuan Fan开发的Chrome扩展程序,该扩展的主要功能是“Plays a sound when new message comes in Twitch chat”。
扩展截图
下载I Hear You Twitch扩展crx文件
下载I Hear You Twitch扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Plays a sound when new message comes in Twitch chat
## Features
- Support every chatroom on Twitch site
- Nice MSN "new message" sound
## How-to
1. Install and make sure you've reload the page
2. Click the extension icon to toggle ON/OFF when you're on a page with Twitch chatroom
3. The extension will automatically toggle OFF when you navigate to other Twitch pages
## Changelog
## [1.2.2] = 2020-5-16
### Added
- Support Twitch minor update at 2020 mid-May
## [1.2.1] = 2019-09-28
### Added
- Support Mixer site
## [1.2.0] - 2019-09-28
### Added
- Support new Twitch site (new logo version @ 2019)
## [1.1.0] - 2018-02-10
### Added
- Support new Twitch site (react version)
## [1.0.0] - 2018-08-25
- First release 扩展基本信息
| 名称 | |
| ID | jnehnjnapcmmblhkcplcffhkaikgfjfg |
| 官方URL | https://chromewebstore.google.com/detail/i-hear-you-twitch/jnehnjnapcmmblhkcplcffhkaikgfjfg |
| 简介 | Plays a sound when new message comes in Twitch chat |
| 文件大小 | 26.32 KB |
| 安装次数 | 1,209 |
| 当前版本 | 1.2.2 |
| 更新时间 | 2020-05-16 |
| 上架时间 | 2020-05-15 |
| 评分 | 4.75/5 共8次评分 |
| 开发者 | Chih-Hsuan Fan |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/pc035860/i-hear-you-twitch |
| 帮助页面URL | https://github.com/pc035860/i-hear-you-twitch/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "I Hear You Twitch",
"version": "1.2.2",
"description": "Plays a sound when new message comes in Twitch chat",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.twitch.tv\/*",
"*:\/\/*.mixer.com\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_idle"
}
],
"browser_action": {
"default_icon": {
"19": "images\/icon-19.png",
"38": "images\/icon-38.png"
},
"default_title": "I Hear You - Twitch"
},
"web_accessible_resources": [
"new_message.mp3",
"images\/*.png"
]
} | |