Twitch Channel Points Gift Box Plugin

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

Was ist Twitch Channel Points Gift Box Plugin?

Twitch Channel Points Gift Box Plugin ist eine Chrome-Erweiterung, die von Paul Purifoy entwickelt wurde, und ihr Hauptmerkmal ist "This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.".

Erweiterungsscreenshots

screenshot

Twitch Channel Points Gift Box Plugin-Erweiterungs-CRX-Datei herunterladen

Laden Sie Twitch Channel Points Gift Box Plugin-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Twitch Channel Points Gift Box Plugin Twitch Channel Points Gift Box Plugin
ID hjbkfjkfeohfbmjcanfignhjmpgjlfba
Offizielle URL https://chromewebstore.google.com/detail/twitch-channel-points-gif/hjbkfjkfeohfbmjcanfignhjmpgjlfba
Beschreibung This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.
Dateigröße 366 KB
Installationsanzahl 189
Aktuelle Version 1.0
Letztes Update 2020-05-07
Veröffentlichungsdatum 2020-05-06
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler Paul Purifoy
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
    }
}