BTRoblox - Making Roblox Better

BTRoblox - Making Roblox Better

BTRoblox, or Better Roblox, is an extension that aims to enhance Roblox's website by modifying the look and adding to the core website functionality by adding a plethora of new features.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "BTRoblox - Making Roblox Better",
  "short_name": "BTRoblox",
  "description": "Enhance your Roblox experience!",
  "version": "3.5.1",
  "author": "AntiBoomz",
  "browser_action": {
    "default_title": "Open BTRoblox Settings"
  },
  "icons": {
    "128": "res/icon_128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "102.0"
    }
  },
  "background": {
    "scripts": [
      "js/rbx/Constants.js",
      "js/shared/common.js",
      "js/shared/utility.js",
      "js/shared/messaging.js",
      "js/shared/sharedData.js",
      "js/shared/settings.js",
      "js/shared/contextmenu.js",
      "js/shared/serverdetails.js",
      "js/bg/background.js",
      "js/bg/groupshout.js",
      "js/bg/blogfeed.js",
      "js/rbx/RobloxApi.js"
    ]
  },
  "permissions": [
    "*://*.roblox.com/",
    "*://*.rbxcdn.com/",
    "notifications",
    "contextMenus",
    "scripting",
    "storage",
    "alarms"
  ],
  "web_accessible_resources": [
    "/res/*",
    "/css/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.roblox.com/*",
        "*://web.roblox.com/*",
        "*://create.roblox.com/*"
      ],
      "exclude_matches": [
        "*://*/userads/*",
        "*://*/user-sponsorship/*",
        "*://*/build/upload",
        "*://*/*/userads/*",
        "*://*/*/user-sponsorship/*",
        "*://*/*/build/upload"
      ],
      "js": [
        "js/rbx/Constants.js",
        "js/shared/common.js",
        "js/shared/utility.js",
        "js/shared/messaging.js",
        "js/shared/sharedData.js",
        "js/shared/settings.js",
        "js/shared/contextmenu.js",
        "js/shared/serverdetails.js",
        "js/util/injectJS.js",
        "js/util/injectCSS.js",
        "js/util/modifyTemplate.js",
        "js/util/loadOptionalLibrary.js",
        "js/feat/themes.js",
        "js/feat/adblock.js",
        "js/feat/fastSearch.js",
        "js/feat/navigation.js",
        "js/feat/robuxToCash.js",
        "js/feat/settingsModal.js",
        "js/rbx/FileFormat/ByteReader.js",
        "js/rbx/FileFormat/Instance.js",
        "js/rbx/FileFormat/XmlParser.js",
        "js/rbx/FileFormat/BinaryParser.js",
        "js/rbx/FileFormat/MeshParser.js",
        "js/rbx/AnimationParser.js",
        "js/rbx/Parser.js",
        "js/rbx/AssetCache.js",
        "js/rbx/RobloxApi.js",
        "js/pages/common.js",
        "js/pages/avatar.js",
        "js/pages/catalog.js",
        "js/pages/develop.js",
        "js/pages/friends.js",
        "js/pages/gamedetails.js",
        "js/pages/groups.js",
        "js/pages/groupadmin.js",
        "js/pages/home.js",
        "js/pages/inventory.js",
        "js/pages/itemdetails.js",
        "js/pages/messages.js",
        "js/pages/money.js",
        "js/pages/profile.js",
        "js/pages/create.js",
        "js/pages/marketplace.js",
        "js/inject.js",
        "js/main.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}