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
官方網址 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"
    ]
}