所有链接在新窗口打开

所有链接都在新窗口打开

// ==UserScript==
// @name        Open All Links in New Windows
// @name:zh-CN  所有链接在新窗口打开
// @namespace   http://tampermonkey.net/
// @version     1.3
// @description Opens all links in new windows.
// @description:zh-CN 所有链接都在新窗口打开
// @author      Yun sun
// @match       *://*/*
// @grant       none
// @license     MIT
// @icon        https://img.icons8.com/?size=64&id=68406&format=png&color=000000  // Paste 64x64 icon URL here
// @run-at      document-start
// ==/UserScript==

(function() {
    'use strict';

    function handleClick(event) {
        if (event.ctrlKey || event.metaKey) return;

        const anchor = event.target.closest('a');
        if (!anchor || !anchor.href) return;

        if (anchor.getAttribute('href').startsWith('javascript:')) return;

        event.preventDefault();
        event.stopPropagation();

        window.open(anchor.href, '_blank');
    }

    document.addEventListener('click', handleClick, true);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址