Unverified Publisher
Flags items published by entities that haven’t gone through the publisher verification process of the marketplace. Lack of verification may indicate higher risk, as the publisher’s identity and trustworthiness are unconfirmed.
BloxFinder is the perfect extension for Roblox users who want unobtainable features that are inaccessible on the normal Roblox website. Using this extension, you can easily locate the server of any Roblox player and join them even if they have joins turned off or blocked you. This is useful for stream sniping YouTubers and finding friends or players in-game who have joins turned off. This extension will also give you the ability to download the texture (clothing template) for any Roblox shirt or pants. This extension is available for all languages and automatically translates to the language that your Roblox account is set to. How to find any Roblox player in-game using BloxFinder: Step 1. Go to any Roblox game and go to the "Servers" section of the game (The game you think your target is currently playing) Step 2. Click "BloxFinder" and type in the username of the person you want to search for Step 3. Click "Find" and wait patiently for it to locate the user Information regarding finding any Roblox player in-game using BloxFinder: • This process works by detecting a match for the avatar of the desired user on the public server list of the game you searched for them on. Information regarding exporting clothing textures using BloxFinder: • This currently only works for original shirts and pants, but in the future we will add the ability to export accessories and other textures. If this extension is helpful to you, we would highly appreciate it if you could give us positive feedback. Thank you for using BloxFinder!
Flags items published by entities that haven’t gone through the publisher verification process of the marketplace. Lack of verification may indicate higher risk, as the publisher’s identity and trustworthiness are unconfirmed.
Flags items published by individuals rather than verified companies or organizations, indicating potential risks due to limited accountability and unclear operational standards
AI-powered analysis of the extension's source code for security insights and risk assessment.
BloxFinder is a Chrome extension designed to enhance the Roblox gaming experience by allowing users to join any player's game server, even if the player has restricted access. Additionally, it provides functionality to download clothing textures from Roblox.
Game Joining Functionality
func to join a Roblox game instance by calling window.Roblox.GameLauncher.joinGameInstance with serialized game place and ID.const func = (place, id) => {
    const serializedPlace = JSON.stringify(place);
    const serializedId = JSON.stringify(id);
    window.Roblox.GameLauncher.joinGameInstance(JSON.parse(serializedPlace), JSON.parse(serializedId));
};
Storage Initialization
chrome.runtime.onInstalled.addListener(() => {
    chrome.storage.local.set({"showWarning": "Yes"})
    chrome.storage.local.set({"showPercentChance": "Yes"})
    chrome.storage.local.set({"totalServers": "Yes"})
    chrome.storage.local.set({"playMusic": "Yes"})
    chrome.storage.local.set({"showConfetti": "Yes"})
    chrome.storage.local.set({"cooldownInterval": 30})
    chrome.storage.local.set({"getRequestInterval": 5})
    chrome.storage.local.set({"totalSearches": 0})
    chrome.storage.local.set({"totalFinds": 0})
});
Message Listener for Script Execution
place and id strings, and executes the func script in the context of the specified tab.chrome.runtime.onMessage.addListener(({ message }, { tab }) => {
    if (typeof message.place === 'string' && typeof message.id === 'string') {
        chrome.scripting.executeScript({
            target: { tabId: tab.id },
            func,
            args: [message.place, message.id],
            world: 'MAIN',
        });
    }
});
The extension appears to function as described, facilitating game joining and texture downloading without any evident malicious behavior.
API calls detected through static analysis of the source code. For more accurate insights, explore our sandbox dynamic analysis.
Any encoded/decoded secrets we managed to find in the source code, git repository, or related files
Known vulnerabilities and security issues detected in the extension's dependencies and code.
Any identifiers we detected that may indicate external communication from the item's code
Dependencies and third-party libraries used by the extension, including version information and license details.