- 理论适用于所有网页 点击链接后直接打开 避免手工再次点击恶心人的 "继续访问" 的沙雕操作
- 新增: angular.io 自动跳转到中文站
- 新增: antdv.com 自动跳转到中文站
- 新增: www.weather.com.cn 广告隐藏
- 新增: www.zhihu.com 广告隐藏
const bodyText = document.body.innerText;
// httpString 提取字符串中的链接
const urls = httpString(bodyText);
if (bodyText.length < 100 && urls && urls.length == 1 && bodyText.includes("安全")) {
window.close();
window.open(urls[0]);
}