GalaxyBlox - Enhance Roblox experience

GalaxyBlox - Enhance Roblox experience

GalaxyBlox adds new improvements, optimizations and features to the Roblox website which has a new interface.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GalaxyBlox - Enhance Roblox experience",
  "description": "GalaxyBlox adds new improvements, optimizations and features to the Roblox website which has a new interface.",
  "version": "2.00",
  "content_scripts": [
    {
      "css": [
        "./css/main.min.css"
      ],
      "js": [
        "./content.bundle.js"
      ],
      "matches": [
        "*://www.roblox.com/*",
        "*://web.roblox.com/*"
      ],
      "all_frames": true,
      "runAt": "document_start"
    }
  ],
  "background": {
    "service_worker": "./service.bundle.js",
    "type": "module"
  },
  "icons": {
    "16": "./icons/icon16.png",
    "48": "./icons/icon48.png",
    "128": "./icons/icon128.png"
  },
  "action": {
    "default_popup": "popup.html"
  }
}