Roblox Statistics

Providing more information.

Roblox Statistics란 무엇입니까?

Roblox Statistics은(는) Kohl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Providing more information."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Roblox Statistics 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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