[Beta] Twitch Plus

Twitch plus is an application that bring some features to improve your experience on twitch. Features available on twitch plus 👇…

[Beta] Twitch Plus란 무엇입니까?

[Beta] Twitch Plus은(는) CodeOz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Twitch plus is an application that bring some features to improve your experience on twitch. Features available on twitch plus 👇…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

[Beta] Twitch Plus 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Twitch plus is an application that bring some features to improve your experience on twitch.

Features available on twitch plus 👇

- Historic chat (alt + up or down, when you go to another stream, historic is clean)

- Auto-claim bonus (when bonus is available, extension will automatically claim it for you, so you can earn a lot of points!)

- Donate Button (If streamer has an external link for donations, you can access it directly by clicking on the donate button!)

- Collapse/Expand Chat shortcut (alt + h)

If you find any bugs or any suggestions or you want to contact developer, please send email to [email protected].

Github of creator -> https://github.com/Code-Oz                    

확장 프로그램 기본 정보

이름 [Beta] Twitch Plus [Beta] Twitch Plus
ID ahdoacgdgcgkhmajnmibefppffbbkgnl
공식 URL https://chromewebstore.google.com/detail/beta-twitch-plus/ahdoacgdgcgkhmajnmibefppffbbkgnl
설명 Twitch plus is an application that bring some features to improve your experience on twitch. Features available on twitch plus 👇…
파일 크기 167 KB
설치 횟수 88
현재 버전 1.0.1
최근 업데이트 2022-01-11
출시 날짜 2022-01-07
개발자 CodeOz
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "[Beta] Twitch Plus",
    "version": "1.0.1",
    "icons": {
        "256": "logo.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "browser_action": {
        "default_popup": "menu.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ]
}