Roblox Statistics
Providing more information.
Roblox Statistics क्या है?
Roblox Statistics Kohl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Providing more information."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Roblox Statistics एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" } ] } |