Skip to content

Releases: wangz-code/link-auto-jump

理论上支持所有网站

30 Dec 02:59
Compare
Choose a tag to compare

理论适用于所有网页 点击链接后直接打开 避免手工再次点击恶心人的 "继续访问" 的沙雕操作
新增: angular.io 自动跳转到中文站
新增: antdv.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]);
}

`

第一次打包 支持三家网站

06 Dec 09:26
Compare
Choose a tag to compare