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 |
官方網址 | 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\/*" ] } ] } |