Chatterino Native Host

Replaces the chat on Twitch.tv with Chatterino.

Chatterino Native Host란 무엇입니까?

Chatterino Native Host은(는) fourtf에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replaces the chat on Twitch.tv with Chatterino."입니다.

확장 프로그램 스크린샷

screenshot

Chatterino Native Host 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}