Examine source code of Old Roblox Logo

Inspect and view changes in Old Roblox Logo source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Old Roblox Logo",
  "version": "1.0.5",
  "description": "Replace the new Roblox logo with the old one.",
  "manifest_version": 2,
  "author": "Sego",
  "browser_specific_settings": {
    "gecko": {
      "id": "oldrblxlogo@sego.app"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.roblox.com/*",
        "https://web.roblox.com/*"
      ],
      "run_at": "document_start",
      "css": [
        "css/rblx.css"
      ],
      "js": [
        "js/rblx.js"
      ]
    },
    {
      "matches": [
        "https://corp.roblox.com/*"
      ],
      "run_at": "document_start",
      "css": [
        "css/corp.css"
      ],
      "js": [
        "js/corp.js"
      ]
    },
    {
      "matches": [
        "https://blog.roblox.com/*"
      ],
      "run_at": "document_start",
      "css": [
        "css/blog.css"
      ],
      "js": [
        "js/blog.js"
      ]
    },
    {
      "matches": [
        "https://corporate.roblox.com/*"
      ],
      "run_at": "document_start",
      "css": [
        "css/corpo.css"
      ],
      "js": [
        "js/corpo.js"
      ]
    },
    {
      "matches": [
        "https://en.help.roblox.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "js/support.js"
      ]
    },
    {
      "matches": [
        "https://careers.roblox.com/*"
      ],
      "js": [
        "js/careers.js"
      ]
    }
  ],
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  }
}