Twitch Compakt

Condense Twitch Chat

Twitch Compaktคืออะไร?

Twitch Compakt เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://nhatqbui.com และคุณลักษณะหลักของมันคือ "Condense Twitch Chat"

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

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

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

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

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