Greasy Fork is available in English.

Gamereactor.se - ad page bypass

Gamereactor.se - Bypass ad pages.

  1. // ==UserScript==
  2. // @name Gamereactor.se - ad page bypass
  3. // @namespace http://www.fmbv.nu/
  4. // @version 0.2
  5. // @description Gamereactor.se - Bypass ad pages.
  6. // @match http://www.gamereactor.se/*
  7. // @match https://www.gamereactor.se/*
  8. // @grant none
  9. // @copyright 2013, Jan Karjalainen
  10. // ==/UserScript==
  11.  
  12.  
  13. (function() {
  14.  
  15. try {
  16.  
  17. textLink="Fortsätt till";
  18.  
  19. nPage=-1;
  20. // opens 1.st such a link in tab
  21.  
  22. for( i=0; i < document.links.length; i++ )
  23.  
  24. if( document.links[ i ].innerHTML.match( textLink ))
  25.  
  26. window.location.href=document.links[i].href
  27. }
  28.  
  29. catch (e) {
  30.  
  31. GM_log( 'Gamereactor.se - ad page bypasst - script exception: ' + e );
  32.  
  33. alert ( 'Gamereactor.se - ad page bypass - script exception: ' + e );
  34.  
  35. }
  36.  
  37. }
  38.  
  39. )();