RoFinder - Find Roblox Users

Search Roblox servers for any user even with joins off

ما هو RoFinder - Find Roblox Users؟

RoFinder - Find Roblox Users هو إضافة Chrome تم تطويرها بواسطة rofinder0، والميزة الرئيسية لها هي "Search Roblox servers for any user even with joins off".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة RoFinder - Find Roblox Users

قم بتنزيل ملفات الامتداد RoFinder - Find Roblox Users بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Find any player in the Roblox server by typing their username in the box

It will use their avatar headshot to find their server so it won't work with default avatar users.

Any errors will go to the error log but feel free to ask any support questions!                    

معلومات أساسية عن التمديد

الاسم RoFinder - Find Roblox Users RoFinder - Find Roblox Users
ID ljcagbpkbjgcehpkegknlmegeaenmolm
عنوان URL الرسمي https://chrome.google.com/webstore/detail/ljcagbpkbjgcehpkegknlmegeaenmolm
الوصف Search Roblox servers for any user even with joins off
حجم الملف 11 KB
عدد التثبيتات 32,070
النسخة الحالية 1
آخر تحديث 2023-03-04
تاريخ النشر 2023-03-04
تقييم 2.19/5 مجموع تقييمات 57
المطور rofinder0
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://theblox.ca/privacy-terms
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RoFinder - Find Roblox Users",
    "manifest_version": 3,
    "version": "1",
    "description": "Search Roblox servers for any user even with joins off",
    "permissions": [
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/*.roblox.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.roblox.com\/*"
            ],
            "js": [
                "RoFinderHtml.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*.png",
                "styles.css",
                "content.js",
                "RoFinderPanel.js",
                "panel.html"
            ],
            "matches": [
                "https:\/\/*.roblox.com\/*"
            ]
        }
    ]
}