Restore Catalog

Removes Avatar Shop and replaces it with Catalog.

  1. // ==UserScript==
  2. // @name Restore Catalog
  3. // @namespace «John»
  4. // @version 0.1
  5. // @description Removes Avatar Shop and replaces it with Catalog.
  6. // @author «John»
  7. // @match https://www.roblox.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. var tag = document.querySelector('a[href="https://www.roblox.com/catalog/"]');
  15. if(tag){
  16. tag.innerHTML = "Catalog";
  17. }
  18. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址