RoPlus - Up Your Roblox Theme

RoPlus - Up Your Roblox Theme

Users can add their own background image and a unique custom color scheme for their Roblox profile.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "RoPlus - Up Your Roblox Theme",
  "description": "Users can add their own background image and a unique custom color scheme for their Roblox profile.",
  "version": "1.5.4",
  "icons": {
    "128": "/assets/icon_128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "background": {
    "service_worker": "/js/background.js"
  },
  "content_scripts": [
    {
      "css": [
        "/styles/style.css",
        "/styles/style.scss"
      ],
      "js": [
        "/js/content_script.js",
        "/js/content.js"
      ],
      "matches": [
        "https://www.roblox.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": "/assets/icon_128.png",
    "default_title": "RoPlus"
  }
}