Chatterino Native Host

Replaces the chat on Twitch.tv with Chatterino.

Chatterino Native Hostคืออะไร?

Chatterino Native Host เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fourtf และคุณลักษณะหลักของมันคือ "Replaces the chat on Twitch.tv with Chatterino."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chatterino Native Host

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

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

                        Overlay the Twitch.tv live chat with Chatterino, bringing the native performance and features of Chatterino to the website. Have the same experience chatting no matter if you are watching or are in offline chat.

We use events and data provided by the browser to overlay a native Chatterino window over the browser. The information includes the channel in which the user is in, as well as the size of the chat. Changing the tab or closing a window causes the Chatterino application to hide/show the window. Chatterino tracks the position and z-level of the Browser window and moves itself accordingly.

NOTE:
- This extension only works on Windows.
- We need to overlay a native window over the browser window which is tricky by design and may not work for you setup.                    

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

ชื่อ Chatterino Native Host Chatterino Native Host
ID glknmaideaikkmemifbfkhnomoknepka
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chatterino-native-host/glknmaideaikkmemifbfkhnomoknepka
คำอธิบาย Replaces the chat on Twitch.tv with Chatterino.
ขนาดไฟล์ 28.37 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2023-03-31
วันที่เผยแพร่ 2019-09-26
คะแนน 3.16/5 รวมทั้งหมด 62 คะแนน
ผู้พัฒนา fourtf
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/fourtf/chatterino2
URL หน้าช่วยเหลือ https://discord.gg/3vmJRwy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chatterino Native Host",
    "version": "1.5",
    "description": "Replaces the chat on Twitch.tv with Chatterino.",
    "permissions": [
        "tabs",
        "nativeMessaging",
        "storage"
    ],
    "icons": {
        "256": "icon.png"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "50.0"
        }
    },
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}