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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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
URL หน้านโยบายความเป็นส่วนตัว 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\/*"
            ]
        }
    ]
}