Twitch Channel Points Auto-Clicker

Automatically claims Twitch channel watch rewards.

Wat is Twitch Channel Points Auto-Clicker?

Twitch Channel Points Auto-Clicker is een Chrome-extensie ontwikkeld door Francis Rhee, en de belangrijkste functie is "Automatically claims Twitch channel watch rewards.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Twitch Channel Points Auto-Clicker

Download Twitch Channel Points Auto-Clicker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Twitch Channel Points Auto-Clicker Twitch Channel Points Auto-Clicker
ID gcfemncaehdhehnidnegppgofnmomido
Officiële URL https://chromewebstore.google.com/detail/twitch-channel-points-aut/gcfemncaehdhehnidnegppgofnmomido
Beschrijving Automatically claims Twitch channel watch rewards.
Bestandsgrootte 7.34 KB
Aantal Installaties 948
Huidige Versie 1.0
Laatst Bijgewerkt 2020-11-11
Publicatiedatum 2020-11-11
Beoordeling 4.25/5 Totaal 4 Beoordelingen
Ontwikkelaar Francis Rhee
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}