RoFinder - Find Roblox Users
Search Roblox servers for any user even with joins off
What is RoFinder - Find Roblox Users?
RoFinder - Find Roblox Users is a Chrome extension developed by rofinder0, and its main feature is "Search Roblox servers for any user even with joins off".
Extension Screenshots
Download RoFinder - Find Roblox Users Extension CRX File
Download RoFinder - Find Roblox Users extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | RoFinder - Find Roblox Users |
ID | ljcagbpkbjgcehpkegknlmegeaenmolm |
Official URL | https://chrome.google.com/webstore/detail/ljcagbpkbjgcehpkegknlmegeaenmolm |
Description | Search Roblox servers for any user even with joins off |
File Size | 11 KB |
Installation Count | 32,070 |
Current Version | 1 |
Last Updated | 2023-03-04 |
Publish Date | 2023-03-04 |
Rating | 2.19/5 Total 57 Ratings |
Developer | rofinder0 |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://theblox.ca/privacy-terms |
Supported Languages | 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\/*" ] } ] } |