Greasy Fork

Greasy Fork is available in English.

所有锚点链接改为新页面打开

open in new tab!

当前为 2024-04-30 提交的版本,查看 最新版本

// ==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'})
    })
})();