Button Deleter

Removes all buttons but the reviving button.

  1. // ==UserScript==
  2. // @name Button Deleter
  3. // @namespace LordBusiness.DB
  4. // @version 1.0
  5. // @description Removes all buttons but the reviving button.
  6. // @author LordBusiness [2052465], Sid [2081212]
  7. // @match https://www.torn.com/profiles.php?XID=*
  8. // @run-at document-start
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. GM_addStyle(`
  13. .user-information,
  14. .buttons-list > a:not(.profile-button-revive) {
  15. display: none !important;
  16. }
  17. `);