Auto Claim Twitch Channel Points

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

Hvad er Auto Claim Twitch Channel Points?

Auto Claim Twitch Channel Points er en Chrome-udvidelse udviklet af mikeyaworski, og dens hovedfunktion er "Will automatically click the button for claiming channel points on Twitch.".

Udvidelsesskærmbilleder

screenshot

Download Auto Claim Twitch Channel Points-udvidelses-CRX-fil

Download Auto Claim Twitch Channel Points-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Auto Claim Twitch Channel Points Auto Claim Twitch Channel Points
ID jfkamlikjbpcgjcdicpjaofammhfgjjh
Officiel URL https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh
Beskrivelse Will automatically click the button for claiming channel points on Twitch.
Filstørrelse 8.29 KB
Antal Installationer 14,923
Nuværende Version 2.0.0
Senest Opdateret 2023-03-09
Udgivelsesdato 2020-05-01
Bedømmelse 4.00/5 Samlet 16 Bedømmelser
Udvikler mikeyaworski
E-mail [email protected]
Betalingsmetode free
Hjælpeside-URL https://mikeyaworski.com/contact
Understøttede Sprog 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"
    ]
}