RoFinder - Find Roblox Users
Search Roblox servers for any user even with joins off
Co to jest RoFinder - Find Roblox Users?
RoFinder - Find Roblox Users to rozszerzenie Chrome opracowane przez rofinder0, a jego główną funkcją jest „Search Roblox servers for any user even with joins off”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia RoFinder - Find Roblox Users
Pobierz pliki rozszerzeń RoFinder - Find Roblox Users w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | RoFinder - Find Roblox Users |
ID | ljcagbpkbjgcehpkegknlmegeaenmolm |
Oficjalny URL | https://chrome.google.com/webstore/detail/ljcagbpkbjgcehpkegknlmegeaenmolm |
Opis | Search Roblox servers for any user even with joins off |
Rozmiar pliku | 11 KB |
Liczba instalacji | 32,070 |
Aktualna Wersja | 1 |
Ostatnia Aktualizacja | 2023-03-04 |
Data Publikacji | 2023-03-04 |
Ocena | 2.19/5 Łącznie 57 Oceny |
Deweloper | rofinder0 |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://theblox.ca/privacy-terms |
Obsługiwane Języki | 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\/*" ] } ] } |