Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Cookie Monster
  3. // @namespace http://getpaidtopwn.net
  4. // @version 1.0.0
  5. // @description Just a cookie clearer
  6. // status: (*SAFER THAN BIRTH CONTROL*) - SAFE - NEUTRAL - RISKY - DANGER - DO NOT USE
  7. // @author You already know
  8. // @include http://enga*
  9. // @include https://enga*
  10. // @grant GM_setValue
  11. // @grant GM_getValue
  12. // @require http://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js
  13. // @require A Big Dick
  14. // ==/UserScript==
  15. // NOTE: THIS SCRIPT IS NOT ILLEGAL NOR IS IT DOING ANYTHING ILLEGAL. PLEASE SHUT THE FUCK UP CORPORATE ASSHOLES
  16.  
  17.  
  18. //Refresh the page, clear cookies
  19. jwplayer().setVolume(5);
  20. setInterval(function foxCookieMonster()
  21. {
  22. var cookies = document.cookie.split(";");
  23.  
  24. for (var i = 0; i < cookies.length; i++) {
  25. var cookie = cookies[i];
  26. var eqPos = cookie.indexOf("=");
  27. var name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie;
  28. document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT";
  29. }
  30. document.location.reload(true);
  31. }, 900000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement