Roblox Statistics
Providing more information.
Co je Roblox Statistics?
Roblox Statistics je rozšíření Chrome vyvinuté Kohl, a jeho hlavní funkcí je „Providing more information.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Roblox Statistics
Stáhněte si soubory rozšíření Roblox Statistics ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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!
Základní Informace o Rozšíření
Název | Roblox Statistics |
ID | mfdbamkphjbmacjbmaipkdicefagjjlp |
Oficiální URL | https://chromewebstore.google.com/detail/roblox-statistics/mfdbamkphjbmacjbmaipkdicefagjjlp |
Popis | Providing more information. |
Velikost souboru | 9.13 KB |
Počet instalací | 72,137 |
Aktuální Verze | 2.2.4 |
Poslední Aktualizace | 2022-09-02 |
Datum Vydání | 2020-05-16 |
Hodnocení | 3.02/5 Celkem 297 Hodnocení |
Vývojář | Kohl |
[email protected] | |
Typ Platby | free |
URL Stránky Nápovědy | https://discord.gg/4ZgvzDbYGP |
Podporované Jazyky | 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" } ] } |