Greasy Fork镜像 支持简体中文。

Remove Google Results Redirect

9 lines of code to remove all link redirection on Google Search Results. Prevents tracking and helps load times!

  1. // ==UserScript==
  2. // @name Remove Google Results Redirect
  3. // @namespace Smiths
  4. // @description 9 lines of code to remove all link redirection on Google Search Results. Prevents tracking and helps load times!
  5. // @include http://google.*/search*
  6. // @include https://google.*/search*
  7. // @include http://www.google.*/search*
  8. // @include https://www.google.*/search*
  9. // @include http://www.google.*/webhp*
  10. // @include https://www.google.*/webhp*
  11. // @grant unsafeWindow
  12. // @version 2.0
  13. // ==/UserScript==
  14. if(unsafeWindow.top == unsafeWindow.self){
  15. document.addEventListener('DOMNodeInserted',function(e){
  16. window.setTimeout(function(){
  17. var rl = document.querySelectorAll('a[onmousedown*="return rwt"]');
  18. for (var l=0;l<rl.length;l++)
  19. rl[l].removeAttribute('onmousedown');
  20. }, 250);}
  21. , false);
  22. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址