Greasy Fork

来自缓存

Greasy Fork is available in English.

eBay 'My eBay' Hover Button Fix

Prevents the "My eBay" link from navigating when clicked, removes hover delay, moves the menu closer, and adds a disappearing delay.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         eBay 'My eBay' Hover Button Fix
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  Prevents the "My eBay" link from navigating when clicked, removes hover delay, moves the menu closer, and adds a disappearing delay.
// @author       Matija Erceg
// @license      MIT
// @match        https://www.ebay.ca/*
// @match        https://www.ebay.com/*
// @grant        none
// ==/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, move menu closer, and add disappearing delay
    const style = document.createElement('style');
    style.textContent = `
        #gh-eb-My .gh-submenu {
            margin-top: -5px !important; /* Move the menu closer to eliminate the gap */
            transition-delay: 0.2s !important; /* Add a disappearing delay */
        }
        #gh-eb-My:hover .gh-submenu {
            transition-delay: 0s !important; /* No delay on hover */
            display: block !important;
        }
    `;
    document.head.appendChild(style);
})();