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 |
| 电子邮箱 | [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"
]
} | |