// ==UserScript== // @name FUCK 提示跳转外部网站 // @namespace https://github.com/idcpj // @version 0.3 // @description 自动关闭烦人的跳转到外部网站的安全提醒 // @author idcpj // @match *zhuanlan.zhihu.com/* // @match *www.jianshu.com/go-wild?ac=2&url* // @match *link.zhihu.com/?target=* // @match *gitee.com/link?target=* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; setTimeout(()=>{ let btns=[ ".Modal-closeButton", //知乎跳转外部链接 ".actions .button", ".external-link-btn", //码云跳转外部链接 ]; btns.map(btn=>{ document.querySelector(btn)?.click(); }) },200) })();