RoFinder - Find Roblox Users

Search Roblox servers for any user even with joins off

Vad är RoFinder - Find Roblox Users?

RoFinder - Find Roblox Users är en Chrome-tillägg utvecklad av rofinder0, och dess huvudfunktion är "Search Roblox servers for any user even with joins off".

Tilläggsskärmbilder

screenshot

Ladda ner RoFinder - Find Roblox Users-förlängningens CRX-fil

Ladda ner RoFinder - Find Roblox Users-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn RoFinder - Find Roblox Users RoFinder - Find Roblox Users
ID ljcagbpkbjgcehpkegknlmegeaenmolm
Officiell webbadress https://chrome.google.com/webstore/detail/ljcagbpkbjgcehpkegknlmegeaenmolm
Beskrivning Search Roblox servers for any user even with joins off
Filstorlek 11 KB
Antal Installationer 32,070
Aktuell Version 1
Senast Uppdaterad 2023-03-04
Publiceringsdatum 2023-03-04
Betyg 2.19/5 Totalt 57 Betyg
Utvecklare rofinder0
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://theblox.ca/privacy-terms
Stödda Språk 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\/*"
            ]
        }
    ]
}