Advertisement
Czogista

Menogram wyłączenie autorefresha

Aug 5th, 2020 (edited)
599
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Menogram wyłączenie autorefresha
  3. // @namespace    http://tampermonkey.net/
  4. // @description  wyłącza automatyczne odświerzanie strony w menogramie(2.8v).
  5. // @author       Czogi
  6. // @match        http://*.margonem.pl/
  7. // @grant        none
  8. // ==/UserScript==
  9.  
  10. const oldTimeout = setTimeout;
  11. window.setTimeout = (callback, timeout) => {
  12.   if (
  13.     callback
  14.       .toString()
  15.       .includes("sessionStorage[_0x2b1d('0xa8')]('aktualnosci');")
  16.   ) {
  17.     return (window.setTimeout = oldTimeout);
  18.   }
  19.   return oldTimeout(callback, timeout);
  20. };
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement