nonstop
nonstop copied to clipboard
可以直接替换跳转链接吗
地址应该都是在target参数上了,在油猴上写了个掘金替换的,直接就跳过去了
if (href.indexOf('juejin.cn') != -1) { window.onload = () => { let alist = document.querySelectorAll('p > a'); for(let i=0; i<alist.length; i++){ let loc = new URL(alist[i].href) let target = loc && loc.searchParams.get('target') if(target){ alist[i].href = target; } } return } }
好吧,行不通,还是太天真
如果想添加其他站点支持,可以提交PR