Twitch Channel Points Gift Box Plugin

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

Hvad er Twitch Channel Points Gift Box Plugin?

Twitch Channel Points Gift Box Plugin er en Chrome-udvidelse udviklet af Paul Purifoy, og dens hovedfunktion er "This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.".

Udvidelsesskærmbilleder

screenshot

Download Twitch Channel Points Gift Box Plugin-udvidelses-CRX-fil

Download Twitch Channel Points Gift Box Plugin-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Twitch Channel Points Gift Box Plugin Twitch Channel Points Gift Box Plugin
ID hjbkfjkfeohfbmjcanfignhjmpgjlfba
Officiel URL https://chromewebstore.google.com/detail/twitch-channel-points-gif/hjbkfjkfeohfbmjcanfignhjmpgjlfba
Beskrivelse This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.
Filstørrelse 366 KB
Antal Installationer 189
Nuværende Version 1.0
Senest Opdateret 2020-05-07
Udgivelsesdato 2020-05-06
Bedømmelse 1.00/5 Samlet 1 Bedømmelser
Udvikler Paul Purifoy
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
    }
}