Greasy Fork

Greasy Fork is available in English.

eBay My eBay Hover Only with No Delay

Prevents the "My eBay" link from navigating when clicked and removes hover delay.

当前为 2024-11-20 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         eBay My eBay Hover Only with No Delay
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Prevents the "My eBay" link from navigating when clicked and removes hover delay.
// @author       matija erceg
// @match        https://www.ebay.ca/*
// @match        https://www.ebay.com/*
// @grant        none
// @license MIT 
// ==/UserScript==

(function() {
    'use strict';

    // Disable the click functionality for "My eBay"
    const observer = new MutationObserver(() => {
        const myEbayLink = document.querySelector('#gh-eb-My a.gh-eb-li-a');
        if (myEbayLink) {
            myEbayLink.addEventListener('click', (event) => {
                event.preventDefault();
                event.stopPropagation();
            });

            // Stop observing once the link is handled
            observer.disconnect();
        }
    });

    observer.observe(document.body, { childList: true, subtree: true });

    // Inject CSS to remove hover delay
    const style = document.createElement('style');
    style.textContent = `
        #gh-eb-My:hover .gh-submenu {
            transition-delay: 0s !important; /* Remove delay */
            display: block !important; /* Ensure it's displayed immediately */
        }
    `;
    document.head.appendChild(style);
})();