einstein95

Untitled

Jul 17th, 2014
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name       skip adf.ly
  3. // @namespace  http://userscripts.org/scripts/show/174893
  4. // @version    0.1
  5. // @description  skip adf.ly
  6. // @include         http://adf.ly/*
  7. // @include         https://adf.ly/*
  8. // @include         http://j.gs/*
  9. // @include         http://q.gs/*
  10. // @include         http://9.bb/*
  11. // @include         http://u.bb/*
  12. // @copyright  July 2013, Stéphane Ruaud
  13. // ==/UserScript==
  14.  
  15. unsafeWindow.onunload=function (){};
  16. unsafeWindow.onbeforeunload=function (){};
  17.  
  18. if (/locked/.test(location.pathname))
  19. {
  20.     window.location.reload();
  21. }
  22.  
  23. var ysmm=unsafeWindow.ysmm;
  24. unsafeWindow.skip_button_clicked=true;
  25.  
  26. var D='';
  27. var F='';
  28. for(var q=0;q<ysmm.length;q++){
  29.   if(q%2==0){D+=ysmm.charAt(q);}
  30.   else{F=ysmm.charAt(q)+F;}
  31. }
  32. ysmm=D+F;
  33. ysmm=Base64.decode(ysmm);
  34. ysmm=ysmm.substring(2);
  35.  
  36. window.location.href=ysmm;
Add Comment
Please, Sign In to add comment