Twitch Compakt
Condense Twitch Chat
What is Twitch Compakt?
Twitch Compakt is a Chrome extension developed by https://nhatqbui.com, and its main feature is "Condense Twitch Chat".
Extension Screenshots
Download Twitch Compakt Extension CRX File
Download Twitch Compakt extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Twitch Compakt |
ID | gfjfndigkjbiabgckjpngijjdkmebeje |
Official URL | https://chromewebstore.google.com/detail/twitch-compakt/gfjfndigkjbiabgckjpngijjdkmebeje |
Description | Condense Twitch Chat |
File Size | 85.16 KB |
Installation Count | 192 |
Current Version | 1.1.1 |
Last Updated | 2017-02-02 |
Publish Date | 2017-02-01 |
Rating | 1.00/5 Total 3 Ratings |
Developer | https://nhatqbui.com |
[email protected] | |
Payment Type | free |
Extension Website | http://compakt.nhatqbui.com |
Help Page URL | http://compakt.nhatqbui.com |
Supported Languages | 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" ] } |