用 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;
}
正则匹配^https?:\/\/www\.google\..+\/url\?.*url=(.*)\&usg=(.*)
,重定向到$1
域名部分没必要,这个规则就是根据域名触发的。
不行,$1需要转码
那真不错,看来操作url会在内部转码一次?