Roblox Statistics

Providing more information.

Cos'è Roblox Statistics?

Roblox Statistics è un'estensione di Chrome sviluppata da Kohl, e la sua funzione principale è "Providing more information.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Roblox Statistics

Scarica i file di estensione Roblox Statistics in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Roblox Statistics Roblox Statistics
ID mfdbamkphjbmacjbmaipkdicefagjjlp
URL Ufficiale https://chromewebstore.google.com/detail/roblox-statistics/mfdbamkphjbmacjbmaipkdicefagjjlp
Descrizione Providing more information.
Dimensione del File 9.13 KB
Conteggio Installazioni 72,137
Versione Corrente 2.2.4
Ultimo Aggiornamento 2022-09-02
Data di Pubblicazione 2020-05-16
Valutazione 3.02/5 Totale 297 Valutazioni
Sviluppatore Kohl
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://discord.gg/4ZgvzDbYGP
Lingue Supportate 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"
        }
    ]
}