Roblox Status Revived

Re-enable the Roblox status text

  1. // ==UserScript==
  2. // @name Roblox Status Revived
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Re-enable the Roblox status text
  6. // @author LeadRDRK
  7. // @match https://www.roblox.com/users/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. var statusElements = document.querySelectorAll("[user-status]");
  15. for (var i = 0; i < statusElements.length; ++i) {
  16. var statusElement = statusElements[i];
  17. statusElement.childNodes[0].classList.remove("ng-hide");
  18. }
  19. })();