RoFinder - Find Roblox Users

Search Roblox servers for any user even with joins off

Apa itu RoFinder - Find Roblox Users?

RoFinder - Find Roblox Users adalah ekstensi Chrome yang dikembangkan oleh rofinder0, dan fitur utamanya adalah "Search Roblox servers for any user even with joins off".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi RoFinder - Find Roblox Users

Unduh file ekstensi RoFinder - Find Roblox Users dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama RoFinder - Find Roblox Users RoFinder - Find Roblox Users
ID ljcagbpkbjgcehpkegknlmegeaenmolm
URL Resmi https://chrome.google.com/webstore/detail/ljcagbpkbjgcehpkegknlmegeaenmolm
Deskripsi Search Roblox servers for any user even with joins off
Ukuran File 11 KB
Jumlah Instalasi 32,070
Versi Saat Ini 1
Terakhir Diperbarui 2023-03-04
Tanggal Publikasi 2023-03-04
Penilaian 2.19/5 Total 57 Penilaian
Pengembang rofinder0
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://theblox.ca/privacy-terms
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}