DashBlox - Improving Roblox

DashBlox - Improving Roblox

Creates new features that otherwise are missing, removed, or don't exist.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "DashBlox - Improving Roblox",
  "short_name": "DashBlox",
  "description": "Creates new features that otherwise are missing, removed, or don't exist.",
  "author": "WingedDash",
  "version": "2.1.4",
  "minimum_chrome_version": "90",
  "action": {
    "default_title": "DashBlox"
  },
  "icons": {
    "128": "resources/icons/logo/128/glow.png",
    "256": "resources/icons/logo/256/glow.png"
  },
  "background": {
    "service_worker": "js/dashblox.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "resources/*"
      ],
      "matches": [
        "*://*.roblox.com/*"
      ]
    }
  ],
  "host_permissions": [
    "*://*.roblox.com/*"
  ],
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "js/library/jquery3.6.0.js",
        "js/dashblox.js",
        "js/pages.js",
        "js/pages/assets.js",
        "js/pages/avatar.js",
        "js/pages/catalog.js",
        "js/pages/discover.js",
        "js/pages/games.js",
        "js/pages/groups.js",
        "js/pages/home.js",
        "js/pages/profile.js",
        "js/pages/settings.js",
        "js/pages/universal.js",
        "js/util.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "matches": [
        "*://*.roblox.com/*"
      ]
    }
  ]
}