Fix Google Links

Prevent google page from replacing search results links with the redirection ones

  1. // ==UserScript==
  2. // @name Fix Google Links
  3. // @version 0.8
  4. // @description Prevent google page from replacing search results links with the redirection ones
  5. // @author Neokyuubi
  6. // @include /^https?://www\.google\.com/search/
  7. // @icon https://www.google.com/favicon.ico
  8. // @grant none
  9. // @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
  10. // @run-at document-idle
  11. // @namespace https://greasyfork.org/users/687731
  12. // ==/UserScript==
  13.  
  14. (function(){
  15.  
  16. $("#rso a[data-jsarwt]").each(function()
  17. {
  18. $(this).attr('data-jsarwt', "");
  19. });
  20.  
  21. })();