Twitch Compakt
Condense Twitch Chat
Twitch Compaktとは何ですか?
Twitch Compaktはhttps://nhatqbui.comによって開発されたChromeの拡張機能で、その主な機能は「Condense Twitch Chat」です。
拡張機能のスクリーンショット
Twitch Compakt拡張機能のCRXファイルをダウンロード
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |