Auto Claim Twitch Channel Points

Will automatically click the button for claiming channel points on Twitch.

Wat is Auto Claim Twitch Channel Points?

Auto Claim Twitch Channel Points is een Chrome-extensie ontwikkeld door mikeyaworski, en de belangrijkste functie is "Will automatically click the button for claiming channel points on Twitch.".

Extensie Screenshots

screenshot

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

Download Auto Claim Twitch Channel Points-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

                        A very simple script which runs in the background on Twitch pages. It automatically clicks the button to claim channel points on Twitch when it appears.

Source code: https://github.com/mikeyaworski/Auto-Claim-Twitch-Channel-Points                    

Basisinformatie over de Extensie

Naam Auto Claim Twitch Channel Points Auto Claim Twitch Channel Points
ID jfkamlikjbpcgjcdicpjaofammhfgjjh
Officiële URL https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh
Beschrijving Will automatically click the button for claiming channel points on Twitch.
Bestandsgrootte 8.29 KB
Aantal Installaties 14,923
Huidige Versie 2.0.0
Laatst Bijgewerkt 2023-03-09
Publicatiedatum 2020-05-01
Beoordeling 4.00/5 Totaal 16 Beoordelingen
Ontwikkelaar mikeyaworski
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://mikeyaworski.com/contact
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Claim Twitch Channel Points",
    "description": "Will automatically click the button for claiming channel points on Twitch.",
    "version": "2.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "main.js",
                "interval.js",
                "mutation-observer.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ]
}