Roblox Statistics
Providing more information.
What is Roblox Statistics?
Roblox Statistics is a Chrome extension developed by Kohl, and its main feature is "Providing more information.".
Extension Screenshots
Download Roblox Statistics Extension CRX File
Download Roblox Statistics extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Roblox Statistics |
ID | mfdbamkphjbmacjbmaipkdicefagjjlp |
Official URL | https://chromewebstore.google.com/detail/roblox-statistics/mfdbamkphjbmacjbmaipkdicefagjjlp |
Description | Providing more information. |
File Size | 9.13 KB |
Installation Count | 72,137 |
Current Version | 2.2.4 |
Last Updated | 2022-09-02 |
Publish Date | 2020-05-16 |
Rating | 3.02/5 Total 297 Ratings |
Developer | Kohl |
[email protected] | |
Payment Type | free |
Help Page URL | https://discord.gg/4ZgvzDbYGP |
Supported Languages | 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" } ] } |