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 Paul Purifoy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension automatically clicks the channel point gift box for each tab that has a Twitch stream."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitch Channel Points Gift Box Plugin एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } } |