Refined Roblox

Simplifies the Roblox interface and adds useful features

Refined Roblox क्या है?

Refined Roblox Elijah द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simplifies the Roblox interface and adds useful features"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Refined Roblox एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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