Open All Links in New Windows

Opens all links in new windows.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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