Roblox URL Launcher

Roblox URL Launcher

Joins a game, specific server or opens studio basing on url parameters.

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 URL Launcher",
  "version": "1.12",
  "description": "Joins a game, specific server or opens studio basing on url parameters.",
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "*://*.roblox.com/home*",
        "*://*.roblox.com/games*",
        "*://*.roblox.com/groups*"
      ],
      "run_at": "document_end",
      "js": [
        "index.js"
      ]
    }
  ],
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "host_permissions": [
    "*://*.roblox.com/home*",
    "*://*.roblox.com/games*",
    "*://*.roblox.com/groups*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}