Twitch Chat Overlay

Overlay the Twitch chat when in fullscreen mode.

Twitch Chat Overlayคืออะไร?

Twitch Chat Overlay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย trmcnvn และคุณลักษณะหลักของมันคือ "Overlay the Twitch chat when in fullscreen mode."

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

screenshot
screenshot

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

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

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

                        Twitch Chat Overlay will allow you to view and interact with the chat while watching a stream in fullscreen.

You can move, resize, and toggle the chat window while in full-screen and these settings are remembered the next time you watch!                    

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

ชื่อ Twitch Chat Overlay Twitch Chat Overlay
ID lcljofkmbcdnjekeamikmefcjohmhgng
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-chat-overlay/lcljofkmbcdnjekeamikmefcjohmhgng
คำอธิบาย Overlay the Twitch chat when in fullscreen mode.
ขนาดไฟล์ 25.92 KB
จำนวนการติดตั้ง 3,615
เวอร์ชันปัจจุบัน 1.10
อัปเดตครั้งล่าสุด 2020-01-21
วันที่เผยแพร่ 2020-01-14
คะแนน 3.70/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา trmcnvn
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/trmcnvn/twitch-chat-overlay
URL หน้าช่วยเหลือ https://github.com/trmcnvn/twitch-chat-overlay/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Chat Overlay",
    "description": "Overlay the Twitch chat when in fullscreen mode.",
    "version": "1.10",
    "homepage_url": "https:\/\/github.com\/trmcnvn\/twitch-chat-overlay",
    "icons": {
        "16": "resources\/icon-16.jpg",
        "48": "resources\/icon-48.jpg",
        "96": "resources\/icon-96.jpg",
        "128": "resources\/icon-128.jpg"
    },
    "web_accessible_resources": [
        "overlay.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_idle"
        }
    ]
}