Auto Claim Twitch Channel Points

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

什么是Auto Claim Twitch Channel Points?

Auto Claim Twitch Channel Points是由mikeyaworski开发的Chrome扩展程序,该扩展的主要功能是“Will automatically click the button for claiming channel points on Twitch.”。

扩展截图

screenshot

下载Auto Claim Twitch Channel Points扩展crx文件

下载Auto Claim Twitch Channel Points扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Auto Claim Twitch Channel Points Auto Claim Twitch Channel Points
ID jfkamlikjbpcgjcdicpjaofammhfgjjh
官方URL https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh
简介 Will automatically click the button for claiming channel points on Twitch.
文件大小 8.29 KB
安装次数 14,923
当前版本 2.0.0
更新时间 2023-03-09
上架时间 2020-05-01
评分 4.00/5 共16次评分
开发者 mikeyaworski
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://mikeyaworski.com/contact
支持的语言 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"
    ]
}