删除谷歌搜索结果中的跟踪脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除谷歌搜索结果中的跟踪脚本相关的知识,希望对你有一定的参考价值。

A recent update to either Google's search results page or Firefox's Tab Mix Plus add-on has prevented a locked tab from opening links in a new tab. This Greasemonkey script removes the tracking code on the Google links that causes the problem. I don't understand what the incompatibility is though, since the tracking script just changes the href attribute at the last minute.

Based on a script at [http://www.searchlores.org/ritz\_google\_anti\_snoop.htm](http://www.searchlores.org/ritz_google_anti_snoop.htm).
  1. // ==UserScript==
  2. // @name Remove Google Tracking Script
  3. // @namespace http://dragonzreef.com/
  4. // @description Removes tracking script in Google search result links
  5. // @include http://www.google.com/search*
  6. // @include https://www.google.com/search*
  7. // ==/UserScript==
  8.  
  9. var rxp = /^.*?{s*return true;s*}$/;
  10. function overwriteRwt()
  11. {
  12. if(rxp.test(unsafeWindow.rwt))
  13. setTimeout(overwriteRwt, 100);
  14. else
  15. unsafeWindow.rwt = function(){ return true; };
  16. }
  17. overwriteRwt();

以上是关于删除谷歌搜索结果中的跟踪脚本的主要内容,如果未能解决你的问题,请参考以下文章

当我在本地主机中删除谷歌分析时,如何忽略整个网站的 ga() 事件跟踪代码?

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

如何创建跟踪 JavaScript 代码,如基于 Javascript 的谷歌分析?

PHP 搜索引擎排名跟踪器 - RankTrackr访问片段

谷歌浏览器中的用户脚本调试

用于 IOS 的谷歌分析 SDK 不再跟踪屏幕或事件。曾经工作