RoFinder - Find Roblox Users
Search Roblox servers for any user even with joins off
什么是RoFinder - Find Roblox Users?
RoFinder - Find Roblox Users是由rofinder0开发的Chrome扩展程序,该扩展的主要功能是“Search Roblox servers for any user even with joins off”。
扩展截图
下载RoFinder - Find Roblox Users扩展crx文件
下载RoFinder - Find Roblox Users扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | RoFinder - Find Roblox Users |
ID | ljcagbpkbjgcehpkegknlmegeaenmolm |
官方URL | https://chrome.google.com/webstore/detail/ljcagbpkbjgcehpkegknlmegeaenmolm |
简介 | Search Roblox servers for any user even with joins off |
文件大小 | 11 KB |
安装次数 | 32,070 |
当前版本 | 1 |
更新时间 | 2023-03-04 |
上架时间 | 2023-03-04 |
评分 | 2.19/5 共57次评分 |
开发者 | rofinder0 |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://theblox.ca/privacy-terms |
支持的语言 | 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\/*" ] } ] } |