Refined Roblox

Adds various tweaks to the Roblox interface.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "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": 2,
  "minimum_chrome_version": "91",
  "applications": {
    "gecko": {
      "id": "{24109a96-d720-4740-8bc6-ffae553ec7c8}",
      "strict_min_version": "91.0"
    }
  },
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab",
    "alarms",
    "https://www.roblox.com/*",
    "https://web.roblox.com/*",
    "https://users.roblox.com/*",
    "https://thumbnails.roblox.com/*"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "optional_permissions": [
    "*://*/*"
  ],
  "icons": {
    "128": "icon.png"
  },
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "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"
      ]
    }
  ]
}