No Annoying Popups

With this script, you will have no problems with annoying popups of energy and stuff while scrolling.

  1. // ==UserScript==
  2. // @name No Annoying Popups
  3. // @namespace LordBusiness.NAAAP
  4. // @version 1.2
  5. // @description With this script, you will have no problems with annoying popups of energy and stuff while scrolling.
  6. // @author LordBusiness [2052465]
  7. // @match https://www.torn.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. let bars = document.querySelectorAll("#barEnergy, #barHappy, #barNerve, #barLife, #barChain");
  15.  
  16. for(let bar of bars) {
  17. bar.style.pointerEvents = "none";
  18. }
  19. })();