Twitch Channel Points Auto-Clicker
Automatically claims Twitch channel watch rewards.
Co je Twitch Channel Points Auto-Clicker?
Twitch Channel Points Auto-Clicker je rozšíření Chrome vyvinuté Francis Rhee, a jeho hlavní funkcí je „Automatically claims Twitch channel watch rewards.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Twitch Channel Points Auto-Clicker
Stáhněte si soubory rozšíření Twitch Channel Points Auto-Clicker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Have you ever been in a different tab or been away while leaving a stream on, and came back to the stream realizing you could've claimed your watch reward a long time ago? This extension allows you to sit back and focus your attention on other things while it claims your points automatically for you, instead of needing to periodically checking on the chat to claim your rewards.
Základní Informace o Rozšíření
Název | Twitch Channel Points Auto-Clicker |
ID | gcfemncaehdhehnidnegppgofnmomido |
Oficiální URL | https://chromewebstore.google.com/detail/twitch-channel-points-aut/gcfemncaehdhehnidnegppgofnmomido |
Popis | Automatically claims Twitch channel watch rewards. |
Velikost souboru | 7.34 KB |
Počet instalací | 948 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2020-11-11 |
Datum Vydání | 2020-11-11 |
Hodnocení | 4.25/5 Celkem 4 Hodnocení |
Vývojář | Francis Rhee |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Channel Points Auto-Clicker", "version": "1.0", "description": "Automatically claims Twitch channel watch rewards.", "permissions": [ "declarativeContent" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "content_script.js" ], "run_at": "document_idle" } ], "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "manifest_version": 2 } |