Roblox Statistics

Providing more information.

Wat is Roblox Statistics?

Roblox Statistics is een Chrome-extensie ontwikkeld door Kohl, en de belangrijkste functie is "Providing more information.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Roblox Statistics

Download Roblox Statistics-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Roblox Statistics Roblox Statistics
ID mfdbamkphjbmacjbmaipkdicefagjjlp
Officiële URL https://chromewebstore.google.com/detail/roblox-statistics/mfdbamkphjbmacjbmaipkdicefagjjlp
Beschrijving Providing more information.
Bestandsgrootte 9.13 KB
Aantal Installaties 72,137
Huidige Versie 2.2.4
Laatst Bijgewerkt 2022-09-02
Publicatiedatum 2020-05-16
Beoordeling 3.02/5 Totaal 297 Beoordelingen
Ontwikkelaar Kohl
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://discord.gg/4ZgvzDbYGP
Ondersteunde Talen 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"
        }
    ]
}