Twitch Channel Points Auto-Clicker

Automatically claims Twitch channel watch rewards.

Twitch Channel Points Auto-Clickerคืออะไร?

Twitch Channel Points Auto-Clicker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Francis Rhee และคุณลักษณะหลักของมันคือ "Automatically claims Twitch channel watch rewards."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Twitch Channel Points Auto-Clicker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Have you ever been in a different tab or been away while leaving a stream on, and came back to the stream realizing you could've claimed your watch reward a long time ago? This extension allows you to sit back and focus your attention on other things while it claims your points automatically for you, instead of needing to periodically checking on the chat to claim your rewards.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitch Channel Points Auto-Clicker Twitch Channel Points Auto-Clicker
ID gcfemncaehdhehnidnegppgofnmomido
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-channel-points-aut/gcfemncaehdhehnidnegppgofnmomido
คำอธิบาย Automatically claims Twitch channel watch rewards.
ขนาดไฟล์ 7.34 KB
จำนวนการติดตั้ง 948
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-11-11
วันที่เผยแพร่ 2020-11-11
คะแนน 4.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Francis Rhee
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Channel Points Auto-Clicker",
    "version": "1.0",
    "description": "Automatically claims Twitch channel watch rewards.",
    "permissions": [
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2
}