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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mikeyaworski และคุณลักษณะหลักของมันคือ "Will automatically click the button for claiming channel points on Twitch."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Claim Twitch Channel Points

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}