Twitch Channel Points Gift Box Plugin

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

Co to jest Twitch Channel Points Gift Box Plugin?

Twitch Channel Points Gift Box Plugin to rozszerzenie Chrome opracowane przez Paul Purifoy, a jego główną funkcją jest „This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Twitch Channel Points Gift Box Plugin

Pobierz pliki rozszerzeń Twitch Channel Points Gift Box Plugin w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitch Channel Points Gift Box Plugin Twitch Channel Points Gift Box Plugin
ID hjbkfjkfeohfbmjcanfignhjmpgjlfba
Oficjalny URL https://chromewebstore.google.com/detail/twitch-channel-points-gif/hjbkfjkfeohfbmjcanfignhjmpgjlfba
Opis This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.
Rozmiar pliku 366 KB
Liczba instalacji 189
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-05-07
Data Publikacji 2020-05-06
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper Paul Purifoy
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
    }
}