RoFinder - Find Roblox Users
Search Roblox servers for any user even with joins off
O que é RoFinder - Find Roblox Users?
RoFinder - Find Roblox Users é uma extensão do Chrome desenvolvida por rofinder0, e sua principal característica é "Search Roblox servers for any user even with joins off".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão RoFinder - Find Roblox Users
Baixe arquivos de extensão RoFinder - Find Roblox Users no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | RoFinder - Find Roblox Users |
ID | ljcagbpkbjgcehpkegknlmegeaenmolm |
URL Oficial | https://chrome.google.com/webstore/detail/ljcagbpkbjgcehpkegknlmegeaenmolm |
Descrição | Search Roblox servers for any user even with joins off |
Tamanho do Arquivo | 11 KB |
Contagem de Instalações | 32,070 |
Versão Atual | 1 |
Última Atualização | 2023-03-04 |
Data de Publicação | 2023-03-04 |
Classificação | 2.19/5 Total de 57 Avaliações |
Desenvolvedor | rofinder0 |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://theblox.ca/privacy-terms |
Idiomas Suportados | 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\/*" ] } ] } |