TC All Alone

description

  1. // ==UserScript==
  2. // @name TC All Alone
  3. // @namespace namespace
  4. // @version 0.1
  5. // @description description
  6. // @license MIT
  7. // @author tos
  8. // @match *.torn.com/factions.php*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. setTimeout(() => {
  13. for (const div of document.querySelectorAll('div[class^=userStatus]')) {
  14. div.innerHTML = '<svg xmlns="http://www.w3.org/2000/svg" class="default___XXAGt " filter="" fill="url(&quot;#svg_status_offline&quot;)" stroke="#fff" stroke-width="0" width="13" height="13" viewBox="-1.5 -1.2 14 14"><g xmlns="http://www.w3.org/2000/svg"><path d="M0,6a6,6,0,1,1,6,6A6,6,0,0,1,0,6Z"></path><path d="M3,5H9V7H3Z" fill="#f2f2f2"></path></g></svg>'
  15. }
  16. }, 3000)