Twitch loot auto-clicker
An extension who clicks on every twitch loot and gets you reports about it
Twitch loot auto-clicker là gì?
Twitch loot auto-clicker là một tiện ích mở rộng Chrome được phát triển bởi RubenRubioM, và tính năng chính của nó là "An extension who clicks on every twitch loot and gets you reports about it".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Twitch loot auto-clicker
Tải xuống các tệp mở rộng Twitch loot auto-clicker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitch loot auto-clicker |
ID | njpjlabehnoepgbbnnkokeadmcgmeoif |
URL Chính Thức | https://chromewebstore.google.com/detail/twitch-loot-auto-clicker/njpjlabehnoepgbbnnkokeadmcgmeoif |
Mô tả | An extension who clicks on every twitch loot and gets you reports about it |
Kích Thước Tệp | 7.15 MB |
Số Lần Cài Đặt | 1,865 |
Phiên Bản Hiện Tại | 2.3.0 |
Cập Nhật Lần Cuối | 2021-10-17 |
Ngày Phát Hành | 2020-07-03 |
Đánh Giá | 4.57/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | RubenRubioM |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/RubenRubioM/TwitchLootClicker |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |