Twitch Channel Points Gift Box Plugin

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

Apa itu Twitch Channel Points Gift Box Plugin?

Twitch Channel Points Gift Box Plugin adalah ekstensi Chrome yang dikembangkan oleh Paul Purifoy, dan fitur utamanya adalah "This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Twitch Channel Points Gift Box Plugin

Unduh file ekstensi Twitch Channel Points Gift Box Plugin dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Twitch Channel Points Gift Box Plugin Twitch Channel Points Gift Box Plugin
ID hjbkfjkfeohfbmjcanfignhjmpgjlfba
URL Resmi https://chromewebstore.google.com/detail/twitch-channel-points-gif/hjbkfjkfeohfbmjcanfignhjmpgjlfba
Deskripsi This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.
Ukuran File 366 KB
Jumlah Instalasi 189
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-05-07
Tanggal Publikasi 2020-05-06
Penilaian 1.00/5 Total 1 Penilaian
Pengembang Paul Purifoy
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
    }
}