A server finder that attempts to find a server with a specified amount of players
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Roblox Server Finder",
"description": "A server finder that attempts to find a server with a specified amount of players",
"version": "0.500",
"icons": {
"16": "/images/preview/16.png",
"48": "/images/preview/48.png",
"128": "/images/preview/128.png"
},
"browser_action": {
"default_icon": "/images/task/48.png",
"default_title": "Roblox Server Finder",
"default_popup": "/resrce/index.html"
},
"web_accessible_resources": [
"/js/rbx.js",
"/js/web.js"
],
"content_scripts": [
{
"matches": [
"https://www.roblox.com/games/*"
],
"js": [
"/js/inject.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{3696132e-6a8a-453c-91b8-b54cbb03bccd}"
}
}
}