onewhite去掉链接分级 中发帖

在对链接进行了分级处理后,每一次点击链接都要重新再点一下,有点麻烦。所以就有了这个油猴脚本 
// ==UserScript==
// @name Linux.do 移除外链确认
// @match https://linux.do/*
// @run-at document-start
// @grant GM_addStyle
// @author onewhitethreee
// ==/UserScript==



// 拦截点击事件
document.addEventListener('click', function (e) {
const link = e.target.closest('a.normal-external-link-icon, a.risky-external-link-icon'...