Greasy Fork is available in English.
open in new tab!
// ==UserScript==
// @name 所有锚点链接改为新页面打开
// @namespace http://tampermonkey.net/
// @version 0.1
// @description open in new tab!
// @author You
// @match *://*/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=chrome.com
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
window.addEventListener('load',()=>{
document.querySelectorAll('a[href]').forEach((el)=>{el.target = '_blank'})
})
})();