eBay display feed item info

Shows hover information on feed

Version vom 27.04.2015. Aktuellste Version

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

You will need to install an extension such as Stylus to install this style.

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

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

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

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

// ==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,
});