Roblox Statistics
Providing more information.
Qu'est-ce que Roblox Statistics ?
Roblox Statistics est une extension Chrome développée par Kohl, et sa fonction principale est "Providing more information.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Roblox Statistics
Téléchargez les fichiers d'extension Roblox Statistics 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
Adds sales estimates, currency conversion, created/updated dates, and more stats to the Roblox website. Roblox removed the API to check gamepass sales/revenue from games you didn't create for privacy reasons. There's nothing that can be done to address this issue on my end. If you're aware of newer APIs that you'd like added to the extension join my discord to discuss it in detail!
Informations de Base sur l'Extension
Nom | Roblox Statistics |
ID | mfdbamkphjbmacjbmaipkdicefagjjlp |
URL Officiel | https://chromewebstore.google.com/detail/roblox-statistics/mfdbamkphjbmacjbmaipkdicefagjjlp |
Description | Providing more information. |
Taille du Fichier | 9.13 KB |
Nombre d'Installations | 72,137 |
Version Actuelle | 2.2.4 |
Dernière Mise à Jour | 2022-09-02 |
Date de Publication | 2020-05-16 |
Évaluation | 3.02/5 Total 297 Évaluations |
Développeur | Kohl |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://discord.gg/4ZgvzDbYGP |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Roblox Statistics", "short_name": "Roblox Stats", "description": "Providing more information.", "version": "2.2.4", "icons": { "16": "icon\/16.png", "128": "icon\/128.png" }, "browser_action": { "default_popup": "popup.html" }, "options_page": "popup.html", "options_ui": { "chrome_style": true, "page": "popup.html" }, "permissions": [ "storage", "*:\/\/*.roblox.com\/", "*:\/\/*.exchangeratesapi.io\/" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "main.js" ], "matches": [ "*:\/\/*.roblox.com\/*" ], "run_at": "document_end" } ] } |