Roblox Statistics

Providing more information.

Was ist Roblox Statistics?

Roblox Statistics ist eine Chrome-Erweiterung, die von Kohl entwickelt wurde, und ihr Hauptmerkmal ist "Providing more information.".

Erweiterungsscreenshots

screenshot
screenshot

Roblox Statistics-Erweiterungs-CRX-Datei herunterladen

Laden Sie Roblox Statistics-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Roblox Statistics Roblox Statistics
ID mfdbamkphjbmacjbmaipkdicefagjjlp
Offizielle URL https://chromewebstore.google.com/detail/roblox-statistics/mfdbamkphjbmacjbmaipkdicefagjjlp
Beschreibung Providing more information.
Dateigröße 9.13 KB
Installationsanzahl 72,137
Aktuelle Version 2.2.4
Letztes Update 2022-09-02
Veröffentlichungsdatum 2020-05-16
Bewertung 3.02/5 Insgesamt 297 Bewertungen
Entwickler Kohl
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://discord.gg/4ZgvzDbYGP
Unterstützte Sprachen 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"
        }
    ]
}