Twitch Channel Points Autoclicker
Automatically claims 'Channel Points' on Twitch
Twitch Channel Points Autoclicker क्या है?
Twitch Channel Points Autoclicker xinitrc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically claims 'Channel Points' on Twitch"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitch Channel Points Autoclicker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Automatically claims 'Channel Points' on Twitch for the channel you are watching. LITE version that requires no permissions is also available: https://chrome.google.com/webstore/detail/fapndfdannkgofolmaihpbigbolcobek/ Also available for Mozilla Firefox: https://addons.mozilla.org/en-GB/firefox/addon/twitch-points-autoclicker/ What permissions are used and why: https://xinitrc.ca/autoclicker-permissions/ Note: May not be compatible with some twitch design changing extensions. Available on GitHub: https://github.com/xinitrc-dev/twitch-points-autoclicker
एक्सटेंशन की मूल जानकारी
नाम | Twitch Channel Points Autoclicker |
ID | pbeamibpehihpjljabhnchghlbneiane |
आधिकारिक URL | https://chromewebstore.google.com/detail/twitch-channel-points-aut/pbeamibpehihpjljabhnchghlbneiane |
विवरण | Automatically claims 'Channel Points' on Twitch |
फ़ाइल का आकार | 110 KB |
स्थापना संख्या | 140,516 |
वर्तमान संस्करण | 1.6.1 |
अंतिम अपडेट | 2021-01-14 |
प्रकाशन तिथि | 2020-05-05 |
रेटिंग | 3.88/5 कुल 134 रेटिंग्स |
डेवलपर | xinitrc |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://xinitrc.ca/autoclicker-permissions |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Channel Points Autoclicker", "description": "Automatically claims 'Channel Points' on Twitch", "version": "1.6.1", "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "arrive-2.4.1.min.js", "twitch-clicker.js" ], "run_at": "document_idle" } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "*:\/\/*.twitch.tv\/*", "tabs", "storage", "notifications", "webNavigation" ], "web_accessible_resources": [ "arrive-2.4.1.min.js", "twitch-clicker.js" ], "options_ui": { "page": "options.html", "open_in_tab": true }, "browser_action": { "default_title": "Channel Points Autoclicker", "default_icon": { "48": "icon48.png", "128": "icon128.png" }, "default_popup": "popup.html" } } |