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