Twitch Channel Points Gift Box Plugin

This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.

Twitch Channel Points Gift Box Pluginคืออะไร?

Twitch Channel Points Gift Box Plugin เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Paul Purifoy และคุณลักษณะหลักของมันคือ "This extension automatically clicks the channel point gift box for each tab that has a Twitch stream."

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

screenshot

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

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

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

                        This chrome extension is used for Twitch to automatically collect the channel point gift boxes which award extra channel points to spend. These channel points can be used to purchase rewards from the streamer's channel for your dedication to their stream. The extension tracks how many gift boxes it has collected and runs in the background so all you have to do is open a new tab and navigate to the streamer(s) that you want to collect from. Spawn as many tabs as you want and it will collect the channel point gift boxes from each stream you have started!                    

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

ชื่อ Twitch Channel Points Gift Box Plugin Twitch Channel Points Gift Box Plugin
ID hjbkfjkfeohfbmjcanfignhjmpgjlfba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-channel-points-gif/hjbkfjkfeohfbmjcanfignhjmpgjlfba
คำอธิบาย This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.
ขนาดไฟล์ 366 KB
จำนวนการติดตั้ง 189
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-05-07
วันที่เผยแพร่ 2020-05-06
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Paul Purifoy
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Channel Points Gift Box Plugin",
    "description": "This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "poll.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Channel Points",
        "default_icon": "gift-box.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/www.twitch.tv\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}