油猴对抗google抽疯

阅读更多
http://www.iteye.com/topic/1127237

最近google抽疯
主要的是由于

jQuery对象与DOM对象之间的转换- Y.out - ITeye技术网站


中的href 很坑爹的走了被墙的url.

所以写了一个油猴来处理

// ==UserScript== 
// @name GooglePassWay
// @version 0.1
// @description 给google穿越用
// @match http://*
// @match https://*
// @copyright maodajun
// @require http://code.jquery.com/jquery-1.4.2.js
// ==/UserScript==



$(function(){
   $(".r").each(function(){
   	   var ha = $(this);
   	   var url =$(".pplsrsl" ,ha.next());
   	   var ht = url.attr("data-url")
       ha.attr("href",ht);

   });

});


如果有错误或是修正站内信我.

你可能感兴趣的:(google,jquery)