Roblox Statistics
Providing more information.
Roblox Statistics là gì?
Roblox Statistics là một tiện ích mở rộng Chrome được phát triển bởi Kohl, và tính năng chính của nó là "Providing more information.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Roblox Statistics
Tải xuống các tệp mở rộng Roblox Statistics dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Roblox Statistics |
ID | mfdbamkphjbmacjbmaipkdicefagjjlp |
URL Chính Thức | https://chromewebstore.google.com/detail/roblox-statistics/mfdbamkphjbmacjbmaipkdicefagjjlp |
Mô tả | Providing more information. |
Kích Thước Tệp | 9.13 KB |
Số Lần Cài Đặt | 72,137 |
Phiên Bản Hiện Tại | 2.2.4 |
Cập Nhật Lần Cuối | 2022-09-02 |
Ngày Phát Hành | 2020-05-16 |
Đánh Giá | 3.02/5 Tổng số 297 Đánh Giá |
Nhà Phát Triển | Kohl |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://discord.gg/4ZgvzDbYGP |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |