RoFinder - Find Roblox Users

Search Roblox servers for any user even with joins off

RoFinder - Find Roblox Users là gì?

RoFinder - Find Roblox Users là một tiện ích mở rộng Chrome được phát triển bởi rofinder0, và tính năng chính của nó là "Search Roblox servers for any user even with joins off".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng RoFinder - Find Roblox Users

Tải xuống các tệp mở rộng RoFinder - Find Roblox Users dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên RoFinder - Find Roblox Users RoFinder - Find Roblox Users
ID ljcagbpkbjgcehpkegknlmegeaenmolm
URL Chính Thức https://chrome.google.com/webstore/detail/ljcagbpkbjgcehpkegknlmegeaenmolm
Mô tả Search Roblox servers for any user even with joins off
Kích Thước Tệp 11 KB
Số Lần Cài Đặt 32,070
Phiên Bản Hiện Tại 1
Cập Nhật Lần Cuối 2023-03-04
Ngày Phát Hành 2023-03-04
Đánh Giá 2.19/5 Tổng số 57 Đánh Giá
Nhà Phát Triển rofinder0
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://theblox.ca/privacy-terms
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}