I Hear You Twitch

Plays a sound when new message comes in Twitch chat

I Hear You Twitchคืออะไร?

I Hear You Twitch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chih-Hsuan Fan และคุณลักษณะหลักของมันคือ "Plays a sound when new message comes in Twitch chat"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย I Hear You Twitch

ดาวน์โหลดไฟล์ส่วนขยาย 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ I Hear You Twitch 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"
    ]
}