Roblox Statistics

Providing more information.

Что такое Roblox Statistics?

Roblox Statistics - это расширение Chrome, разработанное Kohl, и его основная функция - "Providing more information.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Roblox Statistics

Скачайте файлы расширений Roblox Statistics в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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 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"
        }
    ]
}