Roblox Server Finder

Roblox Server Finder

A server finder that attempts to find a server with a specified amount of players

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Roblox Server Finder",
  "description": "A server finder that attempts to find a server with a specified amount of players",
  "version": "0.600",
  "icons": {
    "16": "/images/preview/16.png",
    "48": "/images/preview/48.png",
    "128": "/images/preview/128.png"
  },
  "action": {
    "default_popup": "/resrce/index.html",
    "default_icon": {
      "16": "/images/task/16.png",
      "19": "/images/task/19.png",
      "38": "/images/task/38.png",
      "48": "/images/task/48.png",
      "128": "/images/task/128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/js/rbx.js",
        "/js/web.js"
      ],
      "matches": [
        "*://*.roblox.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.roblox.com/games/*"
      ],
      "run_at": "document_end",
      "js": [
        "/js/inject.js"
      ]
    }
  ]
}