Auto Claim Twitch Channel Points
Will automatically click the button for claiming channel points on Twitch.
Auto Claim Twitch Channel Points क्या है?
Auto Claim Twitch Channel Points mikeyaworski द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Will automatically click the button for claiming channel points on Twitch."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Auto Claim Twitch Channel Points एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A very simple script which runs in the background on Twitch pages. It automatically clicks the button to claim channel points on Twitch when it appears. Source code: https://github.com/mikeyaworski/Auto-Claim-Twitch-Channel-Points
एक्सटेंशन की मूल जानकारी
नाम | Auto Claim Twitch Channel Points |
ID | jfkamlikjbpcgjcdicpjaofammhfgjjh |
आधिकारिक URL | https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh |
विवरण | Will automatically click the button for claiming channel points on Twitch. |
फ़ाइल का आकार | 8.29 KB |
स्थापना संख्या | 14,923 |
वर्तमान संस्करण | 2.0.0 |
अंतिम अपडेट | 2023-03-09 |
प्रकाशन तिथि | 2020-05-01 |
रेटिंग | 4.00/5 कुल 16 रेटिंग्स |
डेवलपर | mikeyaworski |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://mikeyaworski.com/contact |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Claim Twitch Channel Points", "description": "Will automatically click the button for claiming channel points on Twitch.", "version": "2.0.0", "manifest_version": 3, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitch.tv\/*" ], "js": [ "main.js", "interval.js", "mutation-observer.js" ] } ], "action": { "default_popup": "popup.html" }, "permissions": [ "storage" ] } |