// ==UserScript== // @name 新标签页打开链接 // @namespace http://tampermonkey.net/ // @version 2024-01-14 // @description 在新标签页打开所有链接 // @author H-OH // @match *://*/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @downloadURL none // ==/UserScript== (function() { "use strict"; document.querySelectorAll("a").forEach(function(link) { if (link.getAttribute("href") !== "#" && link.getAttribute("href") !== "") { link.setAttribute("target", "_blank"); } }); })();