Roblox Statistics
Providing more information.
Hvad er Roblox Statistics?
Roblox Statistics er en Chrome-udvidelse udviklet af Kohl, og dens hovedfunktion er "Providing more information.".
Udvidelsesskærmbilleder
Download Roblox Statistics-udvidelses-CRX-fil
Download Roblox Statistics-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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!
Grundlæggende oplysninger om udvidelsen
Navn | Roblox Statistics |
ID | mfdbamkphjbmacjbmaipkdicefagjjlp |
Officiel URL | https://chromewebstore.google.com/detail/roblox-statistics/mfdbamkphjbmacjbmaipkdicefagjjlp |
Beskrivelse | Providing more information. |
Filstørrelse | 9.13 KB |
Antal Installationer | 72,137 |
Nuværende Version | 2.2.4 |
Senest Opdateret | 2022-09-02 |
Udgivelsesdato | 2020-05-16 |
Bedømmelse | 3.02/5 Samlet 297 Bedømmelser |
Udvikler | Kohl |
[email protected] | |
Betalingsmetode | free |
Hjælpeside-URL | https://discord.gg/4ZgvzDbYGP |
Understøttede Sprog | 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" } ] } |