Roblox Statistics
Providing more information.
O que é Roblox Statistics?
Roblox Statistics é uma extensão do Chrome desenvolvida por Kohl, e sua principal característica é "Providing more information.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Roblox Statistics
Baixe arquivos de extensão Roblox Statistics no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | Roblox Statistics |
ID | mfdbamkphjbmacjbmaipkdicefagjjlp |
URL Oficial | https://chromewebstore.google.com/detail/roblox-statistics/mfdbamkphjbmacjbmaipkdicefagjjlp |
Descrição | Providing more information. |
Tamanho do Arquivo | 9.13 KB |
Contagem de Instalações | 72,137 |
Versão Atual | 2.2.4 |
Última Atualização | 2022-09-02 |
Data de Publicação | 2020-05-16 |
Classificação | 3.02/5 Total de 297 Avaliações |
Desenvolvedor | Kohl |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://discord.gg/4ZgvzDbYGP |
Idiomas Suportados | 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" } ] } |