Twitch loot auto-clicker
An extension who clicks on every twitch loot and gets you reports about it
Twitch loot auto-clicker란 무엇입니까?
Twitch loot auto-clicker은(는) RubenRubioM에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension who clicks on every twitch loot and gets you reports about it"입니다.
확장 프로그램 스크린샷
Twitch loot auto-clicker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
It's simple, whenever a twitch lootbox is avaliable this extension will click it for you. 🚀 Stats page ⭐️ Points colected with the extension ⭐️ Time left to the next loot box to be avaliable ⭐️ Time spent watching a specific streamer ⭐️ Reset the stats everytime you want ⭐️ Bar chart ⭐️ Pie chart
확장 프로그램 기본 정보
이름 | Twitch loot auto-clicker |
ID | njpjlabehnoepgbbnnkokeadmcgmeoif |
공식 URL | https://chromewebstore.google.com/detail/twitch-loot-auto-clicker/njpjlabehnoepgbbnnkokeadmcgmeoif |
설명 | An extension who clicks on every twitch loot and gets you reports about it |
파일 크기 | 7.15 MB |
설치 횟수 | 1,865 |
현재 버전 | 2.3.0 |
최근 업데이트 | 2021-10-17 |
출시 날짜 | 2020-07-03 |
평점 | 4.57/5 총 14 개의 평점 |
개발자 | RubenRubioM |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/RubenRubioM/TwitchLootClicker |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitch loot auto-clicker", "version": "2.3.0", "description": "An extension who clicks on every twitch loot and gets you reports about it", "icons": { "16": "images\/appIcon16.png", "32": "images\/appIcon32.png", "48": "images\/appIcon48.png", "128": "images\/appIcon128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/appIcon16.png", "32": "images\/appIcon32.png", "48": "images\/appIcon48.png", "128": "images\/appIcon128.png" } }, "author": "Rub\u00e9n Rubio Mart\u00ednez", "host_permissions": [ "http:\/\/www.twitch.com\/", "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "content.js", "functions.js", "constants.js" ] } ], "options_page": "options.html", "offline_enabled": false, "permissions": [ "storage" ] } |