Force Ctrl-click or Middle-click into a new tab

Force Ctrl-click or Middle-click into a new tab to load it in the background

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         Force Ctrl-click or Middle-click into a new tab
// @description  Force Ctrl-click or Middle-click into a new tab to load it in the background
// @namespace    3xploiton3.scripts
// @author       3xploiton3
// @version      1.1
// @license      MIT License
// @grant        GM_openInTab
// @run-at       document-start
// @match        *://www.tokopedia.com/*
// ==/UserScript==

var suppressing = false, clickedElement;

window.addEventListener('mousedown', function (e) {
  clickedElement = e.target;
}, true);

window.addEventListener('mouseup', function (e) {
  if (e.target !== clickedElement) return;

  const link = e.target.closest('a');
  if (!link ||
      (link.getAttribute('href') || '').match(/^(javascript:|#|$)/) ||
      link.href.replace(/#.*/, '') === location.href.replace(/#.*/, '')
  ) {
    return;
  }

  // Middle click (button === 1) OR Ctrl + Left click
  if (e.button === 1 || (e.button === 0 && e.ctrlKey)) {
    GM_openInTab(link.href, {
      active: false,
      setParent: true,
      insert: true,
    });
    suppressing = true;
    setTimeout(() => {
      window.dispatchEvent(new MouseEvent('mouseup', { bubbles: true }));
    });
    prevent(e);
  }
  // Left click without Ctrl – do nothing, allow default behavior (normal navigation)
}, true);

window.addEventListener('click', prevent, true);
window.addEventListener('auxclick', prevent, true);

function prevent(e) {
  if (!suppressing) return;
  e.preventDefault();
  e.stopPropagation();
  e.stopImmediatePropagation();
  setTimeout(() => {
    suppressing = false;
  }, 100);
}