Advertisement
Nolifeq

Untitled

May 16th, 2022
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Off F5 Meno
  3. // @match http://*.margonem.pl/
  4. // @grant none
  5. // ==/UserScript==
  6.  
  7. const oldTimeout = setTimeout;
  8. window.setTimeout = (callback, timeout) => {
  9. if (
  10. callback
  11. .toString()
  12. .includes("sessionStorage")
  13. ) {
  14. return (window.setTimeout = oldTimeout);
  15. }
  16. return oldTimeout(callback, timeout);
  17. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement