Greasy Fork is available in English.
使得网页内所有链接点击之后在新标签页中打开
// ==UserScript==// @name 点击链接在新标签页打开// @namespace http://tampermonkey.net/// @version 0.1// @description 使得网页内所有链接点击之后在新标签页中打开// @license MIT// @author pump_dev// @match *://*/*// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==// @grant none// ==/UserScript==(function() {'use strict';document.addEventListener('click', function(event) {// 检查点击目标是否是<a>标签if (event.target.nodeName === 'A') {event.preventDefault();window.open(event.target.href, '_blank');}});})();