Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Redirect to shurl
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Redirects almost every site to shurl
  6. // @author ATTKILL
  7. // @include *
  8. // @exclude https://duckduckgo.com/*
  9. // @exclude http://corneey.com/wqkXwa
  10. // @exclude
  11. // @exclude
  12. // @exclude
  13. // @exclude
  14. // ==/UserScript==
  15.  
  16. window.location.replace("http://corneey.com/wqkXwa");
  17.  
  18.  
  19.  
  20.  
  21. // ==UserScript==
  22. // @name Refresh shurl
  23. // @namespace http://tampermonkey.net/
  24. // @version 0.1
  25. // @description refreshes shurl after 15s
  26. // @author ATTKILL
  27. // @include http://corneey.com/wqkXwa
  28. // ==/UserScript==
  29.  
  30. setTimeout(function(){window.location.replace("http://corneey.com/wqkXwa");}, 15*1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement