Twitch Loot Collector
This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…
什麼是Twitch Loot Collector?
Twitch Loot Collector是由Coding Castle開發的Chrome擴展程式,該擴展的主要功能是“This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…”。
擴展截圖
下載Twitch Loot Collector擴展crx文件
下載Twitch Loot Collector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream it can be annoying if this little green box pops up wanting to be clicked. That's why I created this extension. You can also disable the automated clicking with a simple switch within the extension panel. I'm always happy about feedback. 擴展基本資訊
| 名稱 | |
| ID | okagcggpdlegjpllohppffkailcjlcdp |
| 官方網址 | https://chromewebstore.google.com/detail/twitch-loot-collector/okagcggpdlegjpllohppffkailcjlcdp |
| 簡介 | This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream… |
| 檔案大小 | 11.94 KB |
| 安裝次數 | 157 |
| 目前版本 | 1.0 |
| 更新時間 | 2021-05-25 |
| 上架時間 | 2021-05-24 |
| 開發者 | Coding Castle |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Twitch Loot Collector",
"version": "1.0",
"content_scripts": [
{
"matches": [
"https:\/\/twitch.tv\/*",
"http:\/\/twitch.tv\/*",
"https:\/\/www.twitch.tv\/*",
"http:\/\/www.twitch.tv\/*"
],
"js": [
"LootCollector.js"
]
}
],
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/images\/twitch_loot_16x16.png",
"32": "\/images\/twitch_loot_32x32.png",
"48": "\/images\/twitch_loot_48x48.png",
"128": "\/images\/twitch_loot_128x128.png"
}
},
"icons": {
"16": "\/images\/twitch_loot_16x16.png",
"32": "\/images\/twitch_loot_32x32.png",
"48": "\/images\/twitch_loot_48x48.png",
"128": "\/images\/twitch_loot_128x128.png"
}
} | |