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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | I Hear You Twitch |
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" ] } |