Twitch Auto Points Clicker & Point Tracker
Twitch point collector and point tracker.
Twitch Auto Points Clicker & Point Tracker क्या है?
Twitch Auto Points Clicker & Point Tracker svendy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Twitch point collector and point tracker."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitch Auto Points Clicker & Point Tracker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
⭐ Features: · Tracks the points collected by this extension and displays in the extension popup. · Grabs points on multiple tabs. · No crazy permissions. · Lightweight —————————————————————————————— ⭐ Permissions explained: · "storage" permission - extension stores your points to your sync profile on your current browser. Also is used to display points in the extension popup. · "https://*.twitch.tv/*" host permissions - Permission to only run the extension at the Twitch.tv domain. —————————————————————————————— ⭐ Source code: · https://github.com/svn-dys/Auto-Channel-Points-Clicker-Point-Tracker —————————————————————————————— ⭐ · Thank you so much for downloading my extension! · ⭐
एक्सटेंशन की मूल जानकारी
नाम | Twitch Auto Points Clicker & Point Tracker |
ID | afflghncaaiaebonpbplhpjhbkaciaim |
आधिकारिक URL | https://chromewebstore.google.com/detail/twitch-auto-points-clicke/afflghncaaiaebonpbplhpjhbkaciaim |
विवरण | Twitch point collector and point tracker. |
फ़ाइल का आकार | 78.96 KB |
स्थापना संख्या | 8,450 |
वर्तमान संस्करण | 2.7 |
अंतिम अपडेट | 2023-03-06 |
प्रकाशन तिथि | 2020-07-14 |
रेटिंग | 3.80/5 कुल 15 रेटिंग्स |
डेवलपर | svendy |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.twitch.tv/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Auto Points Clicker & Point Tracker", "version": "2.7", "manifest_version": 3, "description": "Twitch point collector and point tracker.", "permissions": [ "storage" ], "background": { "service_worker": ".\/src\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitch.tv\/*" ], "js": [ ".\/src\/grab-chest.js" ], "run_at": "document_start" } ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_icon": ".\/icons\/main_icon.png", "default_title": "Twitch Auto Channel Points Clicker & Point Tracker", "default_popup": ".\/src\/popup.html" }, "host_permissions": [ "https:\/\/*.twitch.tv\/*" ] } |