Google 的去重定向蛮简单的

用 Header Editor 扩展篡改 https://www.google.com/url? 开头的网址就行了。
原来用的 anti-redirect 脚本,一直在控制台打印支付宝红包,用着膈应

细说下具体怎么设置,小白不太懂,扩展已经安装了,要怎么改

用自定义函数

const regex = /&url=([^&]+)/;
const match = val.match(regex);

  if (match && match[1]) {
 // console.log(decodeURIComponent(match[1]));
    return decodeURIComponent(match[1]);
  } else {
    return val;
  }

avatar

正则匹配^https?:\/\/www\.google\..+\/url\?.*url=(.*)\&usg=(.*),重定向到$1

域名部分没必要,这个规则就是根据域名触发的。

嗯,我的意思是这样

不行,$1需要转码

可以的,右边可以测试

那真不错,看来操作url会在内部转码一次?