Removes Avatar Shop and replaces it with Catalog.
// ==UserScript==
// @name Restore Catalog
// @namespace «John»
// @version 0.1
// @description Removes Avatar Shop and replaces it with Catalog.
// @author «John»
// @match https://www.roblox.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var tag = document.querySelector('a[href="https://www.roblox.com/catalog/"]');
if(tag){
tag.innerHTML = "Catalog";
}
})();