Twitch loot auto-clicker
An extension who clicks on every twitch loot and gets you reports about it
Was ist Twitch loot auto-clicker?
Twitch loot auto-clicker ist eine Chrome-Erweiterung, die von RubenRubioM entwickelt wurde, und ihr Hauptmerkmal ist "An extension who clicks on every twitch loot and gets you reports about it".
Erweiterungsscreenshots
Twitch loot auto-clicker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitch loot auto-clicker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | njpjlabehnoepgbbnnkokeadmcgmeoif |
| Offizielle URL | https://chromewebstore.google.com/detail/twitch-loot-auto-clicker/njpjlabehnoepgbbnnkokeadmcgmeoif |
| Beschreibung | An extension who clicks on every twitch loot and gets you reports about it |
| Dateigröße | 7.15 MB |
| Installationsanzahl | 1,865 |
| Aktuelle Version | 2.3.0 |
| Letztes Update | 2021-10-17 |
| Veröffentlichungsdatum | 2020-07-03 |
| Bewertung | 4.57/5 Insgesamt 14 Bewertungen |
| Entwickler | RubenRubioM |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/RubenRubioM/TwitchLootClicker |
| Unterstützte Sprachen | 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"
]
} | |