Roblox Statistics
Providing more information.
Apa itu Roblox Statistics?
Roblox Statistics adalah ekstensi Chrome yang dikembangkan oleh Kohl, dan fitur utamanya adalah "Providing more information.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Roblox Statistics
Unduh file ekstensi Roblox Statistics dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | Roblox Statistics |
ID | mfdbamkphjbmacjbmaipkdicefagjjlp |
URL Resmi | https://chromewebstore.google.com/detail/roblox-statistics/mfdbamkphjbmacjbmaipkdicefagjjlp |
Deskripsi | Providing more information. |
Ukuran File | 9.13 KB |
Jumlah Instalasi | 72,137 |
Versi Saat Ini | 2.2.4 |
Terakhir Diperbarui | 2022-09-02 |
Tanggal Publikasi | 2020-05-16 |
Penilaian | 3.02/5 Total 297 Penilaian |
Pengembang | Kohl |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://discord.gg/4ZgvzDbYGP |
Bahasa yang Didukung | 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" } ] } |