Twitch Compakt

Condense Twitch Chat

Twitch Compakt란 무엇입니까?

Twitch Compakt은(는) https://nhatqbui.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Condense Twitch Chat"입니다.

확장 프로그램 스크린샷

Twitch Compakt 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Twitch Chat streamlining. Condenses repeated messages/words/emotes.

Let Twitch chat be Twitch chat. Don't miss any more buried messages. Reduce clutter on the screen.

Features:
 • Compresses repeated patterns in messages e.g. "kappa kappa kappa" = "kappa x3"
 • Repeated messages are grouped together.
 • BetterTTV Emotes!

How to use:
  • Just install and visit Twitch to begin using the addon.

Project is open-source! https://github.com/nhatbui/compakt                    

확장 프로그램 기본 정보

이름 Twitch Compakt Twitch Compakt
ID gfjfndigkjbiabgckjpngijjdkmebeje
공식 URL https://chromewebstore.google.com/detail/twitch-compakt/gfjfndigkjbiabgckjpngijjdkmebeje
설명 Condense Twitch Chat
파일 크기 85.16 KB
설치 횟수 192
현재 버전 1.1.1
최근 업데이트 2017-02-02
출시 날짜 2017-02-01
평점 1.00/5 총 3 개의 평점
개발자 https://nhatqbui.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://compakt.nhatqbui.com
도움말 페이지 URL http://compakt.nhatqbui.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Compakt",
    "short_name": "Compakt",
    "description": "Condense Twitch Chat",
    "version": "1.1.1",
    "icons": {
        "128": ".\/assets\/icon_128.png"
    },
    "background": {
        "scripts": [
            "checkIfTwitch.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": ".\/assets\/icon19.png",
            "38": ".\/assets\/icon38.png"
        },
        "default_title": "Compakt"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "jquery.min.js",
                "compakt.js"
            ],
            "css": [
                "compaktstyles.css"
            ],
            "exclude_globs": [
                "https:\/\/www.twitch.tv\/directory\/*",
                "https:\/\/www.twitch.tv\/p\/*",
                "https:\/\/www.twitch.tv\/products\/*",
                "https:\/\/www.twitch.tv\/*\/manager*",
                "https:\/\/www.twitch.tv\/*\/dashboard",
                "https:\/\/www.twitch.tv\/broadcast",
                "https:\/\/www.twitch.tv\/messages\/*",
                "https:\/\/www.twitch.tv\/settings"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}