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是由Paul Purifoy開發的Chrome擴展程式,該擴展的主要功能是“This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.”。

擴展截圖

screenshot

下載Twitch Channel Points Gift Box Plugin擴展crx文件

下載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
官方網址 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
    }
}