Twitch loot auto-clicker
An extension who clicks on every twitch loot and gets you reports about it
O que é Twitch loot auto-clicker?
Twitch loot auto-clicker é uma extensão do Chrome desenvolvida por RubenRubioM, e sua principal característica é "An extension who clicks on every twitch loot and gets you reports about it".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitch loot auto-clicker
Baixe arquivos de extensão Twitch loot auto-clicker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Twitch loot auto-clicker |
ID | njpjlabehnoepgbbnnkokeadmcgmeoif |
URL Oficial | https://chromewebstore.google.com/detail/twitch-loot-auto-clicker/njpjlabehnoepgbbnnkokeadmcgmeoif |
Descrição | An extension who clicks on every twitch loot and gets you reports about it |
Tamanho do Arquivo | 7.15 MB |
Contagem de Instalações | 1,865 |
Versão Atual | 2.3.0 |
Última Atualização | 2021-10-17 |
Data de Publicação | 2020-07-03 |
Classificação | 4.57/5 Total de 14 Avaliações |
Desenvolvedor | RubenRubioM |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/RubenRubioM/TwitchLootClicker |
Idiomas Suportados | 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" ] } |