Greasy Fork is available in English.

eBay Links rot markieren

zeigt ein rotes Symbol für "besuchte" Links und ein blaues Symbol für "nicht besuchte" Links (siehe Screenshot) Datum: 14.Okt.2020

ของเมื่อวันที่ 14-10-2020 ดู เวอร์ชันล่าสุด

// ==UserScript==
// @name          eBay Links rot markieren
// @description   zeigt ein rotes Symbol für "besuchte" Links und ein blaues Symbol für "nicht besuchte" Links (siehe Screenshot) Datum: 14.Okt.2020
// @run-at        document-end
// @include       *.ebay.de*
// @version       1
// @grant         GM_addStyle
// @namespace https://greasyfork.org/users/414179
// ==/UserScript==
document.querySelectorAll('a.s-item__link').forEach(
function(el) {
var hr = document.createElement('a');
hr.href = el.href;
hr.innerText = '\xa0█████';
el.nextSibling.appendChild(hr);
}
);
GM_addStyle( "a:visited{ color:red !important; }");