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 扩展基本信息
| 名称 | |
| 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"
]
} | |