Twitch gift auto clicker
Auto click to claim +50 bonus channel points.
Vad är Twitch gift auto clicker?
Twitch gift auto clicker är en Chrome-tillägg utvecklad av Nikita Madeev, och dess huvudfunktion är "Auto click to claim +50 bonus channel points.".
Tilläggsskärmbilder
Ladda ner Twitch gift auto clicker-förlängningens CRX-fil
Ladda ner Twitch gift auto clicker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Auto click to claim +50 bonus channel points. The dotted stroke and an eyes emoji in the corner of the block with channel points indicates that the extension has started tracking points and will automatically click on a gift when it appears. ——————————————————— Source code and bug tracker https://github.com/NekitCorp/twitch-gift-auto-clicker
Grundläggande Information om Tillägg
Namn | Twitch gift auto clicker |
ID | bpmlmokbcfjnjodihdnobmaphhdoepdb |
Officiell webbadress | https://chromewebstore.google.com/detail/twitch-gift-auto-clicker/bpmlmokbcfjnjodihdnobmaphhdoepdb |
Beskrivning | Auto click to claim +50 bonus channel points. |
Filstorlek | 8 KB |
Antal Installationer | 46 |
Aktuell Version | 2.2.0 |
Senast Uppdaterad | 2023-10-19 |
Publiceringsdatum | 2023-05-06 |
Betyg | 4.67/5 Totalt 3 Betyg |
Utvecklare | Nikita Madeev |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/NekitCorp/twitch-gift-auto-clicker |
Hjälpsida URL | https://github.com/NekitCorp/twitch-gift-auto-clicker |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch gift auto clicker", "description": "Auto click to claim +50 bonus channel points.", "version": "2.2.0", "manifest_version": 3, "icons": { "16": ".\/icons\/icon-16.png", "32": ".\/icons\/icon-32.png", "48": ".\/icons\/icon-48.png", "128": ".\/icons\/icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.twitch.tv\/*", "*:\/\/twitch.tv\/*" ], "js": [ "content_script.js" ] } ], "action": { "default_popup": "popup.html" }, "permissions": [ "storage" ] } |