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 |
| 公式URL | 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 |
| Eメール | [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"
}
} | |