Twitch Auto Bonuschest
An extension that automatically clicks on bonus chests.
什麼是Twitch Auto Bonuschest?
Twitch Auto Bonuschest是由styfish開發的Chrome擴展程式,該擴展的主要功能是“An extension that automatically clicks on bonus chests.”。
擴展截圖
下載Twitch Auto Bonuschest擴展crx文件
下載Twitch Auto Bonuschest擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
【Features】 ・Automatically click on the bonus chest that appears after 15 minutes of viewing. ・Measure the time it takes for the bonus chest to appear. (countdown) 【Remarks】 ・The time is displayed on the icon, so fixing it is recommended. 【Github】 ・https://github.com/StyfishNoob/Twitch-AutoBC 【Update】 ・2021/5/14 ver2.0 ・2021/7/30 ver2.1 ・2021/8/11 ver2.2 ・2021/8/31 ver2.3 (Translated by DeepL)
擴展基本資訊
名稱 | Twitch Auto Bonuschest |
ID | dhpinkkdmelhnmjicdamkkkoacljhknd |
官方網址 | https://chromewebstore.google.com/detail/twitch-auto-bonuschest/dhpinkkdmelhnmjicdamkkkoacljhknd |
簡介 | An extension that automatically clicks on bonus chests. |
檔案大小 | 11.64 KB |
安裝次數 | 149 |
目前版本 | 2.4 |
更新時間 | 2021-10-02 |
上架時間 | 2021-02-22 |
開發者 | styfish |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.4", "default_locale": "en", "name": "Twitch Auto Bonuschest", "description": "An extension that automatically clicks on bonus chests.", "icons": { "16": "img\/icon.png", "48": "img\/icon.png", "128": "img\/icon.png" }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "contentScript.js" ] } ], "browser_action": { "default_popup": "popup\/popup.html", "default_title": "Click on the bonus chest automatically!" }, "background": { "scripts": [ "background.js" ], "persistent": true } } |