RoFinder - Find Roblox Users

Search Roblox servers for any user even with joins off

Τι είναι το RoFinder - Find Roblox Users;

Το RoFinder - Find Roblox Users είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rofinder0, και η κύρια λειτουργία του είναι "Search Roblox servers for any user even with joins off".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης RoFinder - Find Roblox Users

Λήψη αρχείων επέκτασης 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 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\/*"
            ]
        }
    ]
}