Auto Claim Twitch Channel Points

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

What is Auto Claim Twitch Channel Points?

Auto Claim Twitch Channel Points is a Chrome extension developed by mikeyaworski, and its main feature is "Will automatically click the button for claiming channel points on Twitch.".

Extension Screenshots

screenshot

Download Auto Claim Twitch Channel Points Extension CRX File

Download Auto Claim Twitch Channel Points extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Auto Claim Twitch Channel Points Auto Claim Twitch Channel Points
ID jfkamlikjbpcgjcdicpjaofammhfgjjh
Official URL https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh
Description Will automatically click the button for claiming channel points on Twitch.
File Size 8.29 KB
Installation Count 14,923
Current Version 2.0.0
Last Updated 2023-03-09
Publish Date 2020-05-01
Rating 4.00/5 Total 16 Ratings
Developer mikeyaworski
Email [email protected]
Payment Type free
Help Page URL https://mikeyaworski.com/contact
Supported Languages 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"
    ]
}