Auto Claim Twitch Channel Points

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

Qu'est-ce que Auto Claim Twitch Channel Points ?

Auto Claim Twitch Channel Points est une extension Chrome développée par mikeyaworski, et sa fonction principale est "Will automatically click the button for claiming channel points on Twitch.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Auto Claim Twitch Channel Points

Téléchargez les fichiers d'extension Auto Claim Twitch Channel Points au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Auto Claim Twitch Channel Points Auto Claim Twitch Channel Points
ID jfkamlikjbpcgjcdicpjaofammhfgjjh
URL Officiel https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh
Description Will automatically click the button for claiming channel points on Twitch.
Taille du Fichier 8.29 KB
Nombre d'Installations 14,923
Version Actuelle 2.0.0
Dernière Mise à Jour 2023-03-09
Date de Publication 2020-05-01
Évaluation 4.00/5 Total 16 Évaluations
Développeur mikeyaworski
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://mikeyaworski.com/contact
Langues Prises en Charge 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"
    ]
}