Twitch Chat Helper

Allows to highlight chat messages of selected users, change chat font size and more.

Twitch Chat Helperคืออะไร?

Twitch Chat Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dmitriy Zhura และคุณลักษณะหลักของมันคือ "Allows to highlight chat messages of selected users, change chat font size and more."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Chat Helper

ดาวน์โหลดไฟล์ส่วนขยาย Twitch Chat Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ✔ FEATURES:
 • highlight and track twitch user's chat messages
 • change chat font size
 • see amount of user's messages in chat without scrolling
 • get notification sound when tracked user posting new message
 • get notification when you've been mentioned
 • auto claim channel points bonus
 • hide multiple page elements (player extensions overlay, sub trains, community highlights)

Have you ever tried to find chat message that someone responded to? Or to find someone's previous chat messages to follow ongoing conversation? This extension allows you to do it very easily.

✔ HOW TO USE:
 • To track mentioned user click on his @mention (username with leading @ sign) in chat. 
 • To track message's author hold ALT key and click one of his messages (next Alt+Click would cancel tracking). 
 • To track user without finding him in chat, click on extension icon (top right of your browser window) and enter his username into input field.

When tracking starts, track-bar at the bottom of the chat will appear. Small scroll bar in it will represent visible chat area (scroll chat a bit to get the gist). Message markers on it will represent tracked user's messages. Change color scheme of track-bar and highlighted messages in extension settings (last 2 schemes would be more appropriate for twitch in dark mode).

✔ KEYBOARD HOTKEYS:
Alt + S - cancel tracking
Alt + W - toggle focus on chat input field
Alt + Q - open extension's settings popup
Ctrl + Enter - toggle fullscreen

If you found any bugs or have suggestion on how to improve extension functionality feel free to contact me at [email protected]                    

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

ชื่อ Twitch Chat Helper Twitch Chat Helper
ID fdecmpcjekkifmllbbalhhcipgfiaoch
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-chat-helper/fdecmpcjekkifmllbbalhhcipgfiaoch
คำอธิบาย Allows to highlight chat messages of selected users, change chat font size and more.
ขนาดไฟล์ 389 KB
จำนวนการติดตั้ง 983
เวอร์ชันปัจจุบัน 1.3.1
อัปเดตครั้งล่าสุด 2020-10-09
วันที่เผยแพร่ 2019-07-07
คะแนน 4.45/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา Dmitriy Zhura
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Chat Helper",
    "short_name": "TCH",
    "version": "1.3.1",
    "description": "Allows to highlight chat messages of selected users, change chat font size and more.",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "notifications",
        "storage",
        "https:\/\/*.twitch.tv\/",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "sounds\/*.mp3",
        "sounds\/*.ogg"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Alt+Q"
            }
        }
    },
    "manifest_version": 2
}