"Open in New Tab" Button

Open in New Tab button.

目前為 2023-11-20 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         "Open in New Tab" Button
// @namespace    Zero
// @version      1.2.3
// @description  Open in New Tab button.
// @author       Who cares
// @match        *://*/*
// @exclude      *://about:blank/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function addOpenInNewTabButton(link) {
        const button = document.createElement('button');
        button.style.position = 'absolute';
        button.style.zIndex = '9999';
        button.style.padding = '1px';
        button.style.background = 'white';
        button.style.color = 'black';
        button.style.border = '1px solid #555555';
        button.style.borderRadius = '5px'; // Kenarların oval olması için
        button.style.cursor = 'pointer';
        button.style.margin = '5px'; // Buton ile bağlantı arasında "?" piksel aralık
        button.style.opacity = '0.7'; // Saydamlık 💀

        // İlk ikon
        const icon1 = document.createElement('img');
        icon1.src = 'https://i.ibb.co/b71mV9V/new-tab-dark.png'; // İkon URL
        icon1.style.width = '15px'; // İkonun genişliği ayarlanabilir

        // İkinci ikon (mouseover durumunda görünecek)
        const icon2 = document.createElement('img');
        icon2.src = 'https://i.ibb.co/b71mV9V/new-tab-dark.png'; // İkinci ikonun URL'si
        icon2.style.width = '20px'; // İkinci ikonun genişliği
        icon2.style.display = 'none'; // İkinci ikonu başlangıçta gizle

        button.appendChild(icon1);
        button.appendChild(icon2);

        button.addEventListener('click', function(event) {
            event.stopPropagation();
            window.open(link.href, '_blank');
        });

        // Bağlantının altına ekleniyor
        link.parentNode.appendChild(button);

        // Hover olayları
        button.addEventListener('mouseover', function() {
            button.style.border = '1px solid #777777'; // Mouse üzerine gelindiğinde kenarlık rengi
            button.style.background = '#ffff00'; // Mouse üzerine gelindiğinde buton rengi
            button.style.color = 'white';
            icon1.style.display = 'none'; // İlk ikonu gizle
            icon2.style.display = 'inline'; // İkinci ikonu göster
        });

        button.addEventListener('mouseout', function() {
            button.style.border = '1px solid #777777';
            button.style.background = 'white';
            button.style.color = 'black';
            icon1.style.display = 'inline'; // İlk ikonu göster
            icon2.style.display = 'none'; // İkinci ikonu gizle
        });
    }

    // Sayfa içindeki tüm bağlantıların yanında butonu tutar
    document.querySelectorAll('a').forEach(function(link) {
        addOpenInNewTabButton(link);
    });
})();