Raw Source
Nitroretro / Old ROBLOX logo

// ==UserScript==
// @name         Old ROBLOX logo
// @namespace    http://nitroretro.at.ua
// @version      1.0
// @description  Replaces the new ROBLOX logo with the old one.
// @author       Nitroretro
// @match        https://www.roblox.com/*
// @match        https://forum.roblox.com/*
// @grant        none
// @updateURL    http://nitroretro.at.ua/other/userscripts/oldrblx/oldrobloxlogo.user.js
// ==/UserScript==

(function() {
    'use strict';
    
    document.getElementsByClassName("icon-logo")[0].style.backgroundImage = "url(http://i.imgur.com/2VA0v33.png)";
    document.getElementsByClassName("icon-logo")[0].style.backgroundPosition = "0px 1px";
    document.getElementsByClassName("icon-logo")[0].style.backgroundSize = "118px 27px";
    
    document.getElementsByClassName("icon-logo-r")[0].style.backgroundImage = "url(http://i.imgur.com/0G108h4.png)";
    
    var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
    link.type = 'image/x-icon';
    link.rel = 'shortcut icon';
    link.href = 'http://i.imgur.com/0G108h4.png';
    document.getElementsByTagName('head')[0].appendChild(link);
})();