eBay display feed item info

Shows hover information on feed

اعتبارا من 27-04-2015. شاهد أحدث إصدار.

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         eBay display feed item info
// @namespace    http://mbignell.com/
// @version      0.2
// @description  Shows hover information on feed
// @author       Mike Bignell
// @match        http://www.ebay.co.uk/
// @grant        none
// ==/UserScript==

function setDivOpacity ()
{
    var allHoverInfos = document.getElementsByClassName("hover-info");

    for(var i = 0; i < allHoverInfos.length; i++)
    {
        var div = allHoverInfos[i];
        //console.log(div);
        
        if (div.getAttribute("style") == null)
        {
            div.setAttribute("style","opacity: 0.5;");
        }
    }
}

MutationObserver = window.MutationObserver || window.WebKitMutationObserver;

var observer = new MutationObserver(function(mutations, observer) {
    // fired when a mutation occurs
    //console.log(mutations, observer);
    setDivOpacity();
});

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