Refined Roblox

Simplifies the Roblox interface and adds useful features

Refined Robloxคืออะไร?

Refined Roblox เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Elijah และคุณลักษณะหลักของมันคือ "Simplifies the Roblox interface and adds useful features"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Refined Roblox

ดาวน์โหลดไฟล์ส่วนขยาย Refined Roblox ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds in some small refinements to the Roblox website.

Highlights:
- User avatars next to creator names
- Group join requests and member lists include a user's join date.
- Markdown support in game descriptions
- Low quality comments are hidden                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Refined Roblox Refined Roblox
ID nmonfedkjkdejhdinghojfhjnedhmeao
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/refined-roblox/nmonfedkjkdejhdinghojfhjnedhmeao
คำอธิบาย Simplifies the Roblox interface and adds useful features
ขนาดไฟล์ 402 KB
จำนวนการติดตั้ง 208
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2022-11-15
วันที่เผยแพร่ 2022-07-16
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Elijah
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://gitlab.com/refined-roblox/refined-roblox
URL หน้าช่วยเหลือ https://gitlab.com/refined-roblox/refined-roblox/-/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Refined Roblox",
    "version": "1.0.1",
    "description": "Simplifies the Roblox interface and adds useful features",
    "homepage_url": "https:\/\/gitlab.com\/refined-roblox\/refined-roblox",
    "manifest_version": 3,
    "minimum_chrome_version": "91",
    "applications": {
        "gecko": {
            "id": "{24109a96-d720-4740-8bc6-ffae553ec7c8}",
            "strict_min_version": "91.0"
        }
    },
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "*:\/\/*\/*"
    ],
    "host_permissions": [
        "https:\/\/www.roblox.com\/*",
        "https:\/\/web.roblox.com\/*",
        "https:\/\/users.roblox.com\/*",
        "https:\/\/thumbnails.roblox.com\/*",
        "*:\/\/*\/*"
    ],
    "icons": {
        "128": "icon.png"
    },
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.roblox.com\/*",
                "https:\/\/web.roblox.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/*\/login\/*"
            ],
            "css": [
                "refined-roblox.css"
            ],
            "js": [
                "refined-roblox.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png"
    }
}