nonstop icon indicating copy to clipboard operation
nonstop copied to clipboard

可以直接替换跳转链接吗

Open yjrhgvbn opened this issue 3 years ago • 2 comments

地址应该都是在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 } }

yjrhgvbn avatar Sep 17 '21 08:09 yjrhgvbn

好吧,行不通,还是太天真

yjrhgvbn avatar Sep 17 '21 10:09 yjrhgvbn

如果想添加其他站点支持,可以提交PR

yuxiaoy1 avatar Sep 17 '21 13:09 yuxiaoy1