Roblox Statistics

Providing more information.

Vad är Roblox Statistics?

Roblox Statistics är en Chrome-tillägg utvecklad av Kohl, och dess huvudfunktion är "Providing more information.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Roblox Statistics-förlängningens CRX-fil

Ladda ner Roblox Statistics-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Roblox Statistics Roblox Statistics
ID mfdbamkphjbmacjbmaipkdicefagjjlp
Officiell webbadress https://chromewebstore.google.com/detail/roblox-statistics/mfdbamkphjbmacjbmaipkdicefagjjlp
Beskrivning Providing more information.
Filstorlek 9.13 KB
Antal Installationer 72,137
Aktuell Version 2.2.4
Senast Uppdaterad 2022-09-02
Publiceringsdatum 2020-05-16
Betyg 3.02/5 Totalt 297 Betyg
Utvecklare Kohl
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://discord.gg/4ZgvzDbYGP
Stödda Språk 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"
        }
    ]
}