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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Twitch Loot Collector |
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 |
이메일 | [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" } } |