在greasemonkey中使用javascript或jquery重定向

时间:2013-07-21 02:17:05

标签: javascript jquery redirect greasemonkey

我想在greasemonkey中使用javascript或jquery从第一个链接重定向到另一个链接

       http://*.tumblr.com/post/*/*
       http://$1.tumblr.com/image/$2

1 个答案:

答案 0 :(得分:0)

使用此正则表达式

/^http:\/\/(.*).twitter.com\/post\/(.*)\/(.*)/g

喜欢这个

var regexp = new RegExp(/^http:\/\/(.*).twitter.com\/post\/(.*)\/(.*)/g);
var results = regexp.exec(window.location.href);

要创建阵列,您可以

if(results){
    window.location="http://"+results[1]+".twitter.com/image/"+results[2]+"/"+results[3];
}

重定向

Live Version