Roblox Statistics
Providing more information.
Roblox Statisticsとは何ですか?
Roblox StatisticsはKohlによって開発されたChromeの拡張機能で、その主な機能は「Providing more information.」です。
拡張機能のスクリーンショット
Roblox Statistics拡張機能のCRXファイルをダウンロード
Roblox Statistics拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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!
拡張機能の基本情報
名前 | Roblox Statistics |
ID | mfdbamkphjbmacjbmaipkdicefagjjlp |
公式URL | https://chromewebstore.google.com/detail/roblox-statistics/mfdbamkphjbmacjbmaipkdicefagjjlp |
説明 | Providing more information. |
ファイルサイズ | 9.13 KB |
インストール数 | 72,137 |
現在のバージョン | 2.2.4 |
最終更新日 | 2022-09-02 |
公開日 | 2020-05-16 |
評価 | 3.02/5 合計 297 レビュー |
開発者 | Kohl |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://discord.gg/4ZgvzDbYGP |
対応言語 | 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" } ] } |