Auto Claim Twitch Channel Points

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

Cos'è Auto Claim Twitch Channel Points?

Auto Claim Twitch Channel Points è un'estensione di Chrome sviluppata da mikeyaworski, e la sua funzione principale è "Will automatically click the button for claiming channel points on Twitch.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Auto Claim Twitch Channel Points

Scarica i file di estensione Auto Claim Twitch Channel Points in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Auto Claim Twitch Channel Points Auto Claim Twitch Channel Points
ID jfkamlikjbpcgjcdicpjaofammhfgjjh
URL Ufficiale https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh
Descrizione Will automatically click the button for claiming channel points on Twitch.
Dimensione del File 8.29 KB
Conteggio Installazioni 14,923
Versione Corrente 2.0.0
Ultimo Aggiornamento 2023-03-09
Data di Pubblicazione 2020-05-01
Valutazione 4.00/5 Totale 16 Valutazioni
Sviluppatore mikeyaworski
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://mikeyaworski.com/contact
Lingue Supportate 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"
    ]
}