Skip to content

点链接后直接跳转 避免恶心的 "继续访问" 的沙雕操作

License

Notifications You must be signed in to change notification settings

wangz-code/link-auto-jump

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AutoJump chrome 网页外链跳转插件

  • 理论适用于所有网页 点击链接后直接打开 避免手工再次点击恶心人的 "继续访问" 的沙雕操作
  • 新增: 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]);
}

使用前

ossk8O.md.png

ossk8O.md.png

使用后 确认页面一闪而过

ossk8O.md.png