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"입니다.

확장 프로그램 스크린샷

screenshot

RoFinder - Find Roblox Users 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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\/*"
            ]
        }
    ]
}