Roblox Statistics

Providing more information.

什么是Roblox Statistics?

Roblox Statistics是由Kohl开发的Chrome扩展程序,该扩展的主要功能是“Providing more information.”。

扩展截图

screenshot
screenshot

下载Roblox Statistics扩展crx文件

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