原因你知道的,https我等是没权利享用的而且很多网站不支持https好像。
所以从google搜索结果中用https很难打开,但只要改为http立即就可以了。
我也没啥要保密的,爱看就看啦,只乞求沧桑不要干扰我上网...// ==UserScript==
 // @name           StopRWT
 // @namespace      com.mzwu.www
 // @description    阻止Google转换搜索链接地址
 // @include        http://www.google.com.hk*
 // ==/UserScript==
 
 var gcounter = 0;
 var gtimer = window.setInterval(function(){
         if(!!unsafeWindow.rwt){
             unsafeWindow.rwt = function(){};
             window.clearInterval(gtimer);
             document.title = "阻止Google转换搜索链接地址成功!";
         }
         if(++gcounter==10){
             window.clearInterval(gtimer);
         }
     },1000
 );