Twitch Auto Points Clicker & Point Tracker
Twitch point collector and point tracker.
Qu'est-ce que Twitch Auto Points Clicker & Point Tracker ?
Twitch Auto Points Clicker & Point Tracker est une extension Chrome développée par svendy, et sa fonction principale est "Twitch point collector and point tracker.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitch Auto Points Clicker & Point Tracker
Téléchargez les fichiers d'extension Twitch Auto Points Clicker & Point Tracker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
⭐ 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! · ⭐
Informations de Base sur l'Extension
Nom | Twitch Auto Points Clicker & Point Tracker |
ID | afflghncaaiaebonpbplhpjhbkaciaim |
URL Officiel | https://chromewebstore.google.com/detail/twitch-auto-points-clicke/afflghncaaiaebonpbplhpjhbkaciaim |
Description | Twitch point collector and point tracker. |
Taille du Fichier | 78.96 KB |
Nombre d'Installations | 8,450 |
Version Actuelle | 2.7 |
Dernière Mise à Jour | 2023-03-06 |
Date de Publication | 2020-07-14 |
Évaluation | 3.80/5 Total 15 Évaluations |
Développeur | svendy |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.twitch.tv/ |
Langues Prises en Charge | 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\/*" ] } |