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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Paul Purifoy, και η κύρια λειτουργία του είναι "This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Twitch Channel Points Gift Box Plugin
Λήψη αρχείων επέκτασης 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 |
ID | hjbkfjkfeohfbmjcanfignhjmpgjlfba |
Επίσημο URL | 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 } } |