Roblox Server Search

Searches for a Roblox server with the least amount of users active.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "description": "Searches for a roblox server with the least amount of users active.",
  "manifest_version": 2,
  "name": "RobloxServerSearch",
  "author": "Stillwater",
  "version": "1.1",
  "homepage_url": "https://github.com/StillwaterYT/RobloxServerSearch",
  "icons": {
    "48": "icons/icon.png"
  },
  "permissions": [
    "*://*.roblox.com/*",
    "webRequest"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.roblox.com/*"
      ],
      "js": [
        "ServerSearch.js"
      ]
    }
  ]
}