Restore Develop

Removes Create and replaces it with Develop.

  1. // ==UserScript==
  2. // @name Restore Develop
  3. // @namespace John R.
  4. // @version 0.1
  5. // @description Removes Create and replaces it with Develop.
  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/develop"]');
  15. if(tag){
  16. tag.innerHTML = "Develop";
  17. }
  18. })();