Refined Roblox

Refined Roblox

Simplifies the Roblox interface and adds useful features

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Refined Roblox",
  "version": "1.0.1",
  "description": "Simplifies the Roblox interface and adds useful features",
  "homepage_url": "https://gitlab.com/refined-roblox/refined-roblox",
  "manifest_version": 3,
  "minimum_chrome_version": "91",
  "applications": {
    "gecko": {
      "id": "{24109a96-d720-4740-8bc6-ffae553ec7c8}",
      "strict_min_version": "91.0"
    }
  },
  "permissions": [
    "storage"
  ],
  "optional_permissions": [
    "*://*/*"
  ],
  "host_permissions": [
    "https://www.roblox.com/*",
    "https://web.roblox.com/*",
    "https://users.roblox.com/*",
    "https://thumbnails.roblox.com/*",
    "*://*/*"
  ],
  "icons": {
    "128": "icon.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://www.roblox.com/*",
        "https://web.roblox.com/*"
      ],
      "exclude_matches": [
        "https://*/login/*"
      ],
      "css": [
        "refined-roblox.css"
      ],
      "js": [
        "refined-roblox.js"
      ]
    }
  ],
  "action": {
    "default_icon": "icon.png"
  }
}