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文件
下載Twitch loot auto-clicker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } |