eBay Dark Mode

A dark mode look for eBay

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name        eBay Dark Mode
// @namespace   ebay-dark-mode
// @description A dark mode look for eBay
// @author      DeviousD4n
// @version     0.2
// @license     MIT
// @include     https://*.ebay.*/*
// @match       https://itm.ebaydesc.com/*
// @run-at      document-start
// @grant       none
// ==/UserScript==

const style = document.createElement("style");

if (location.hostname === "itm.ebaydesc.com") {

    style.textContent = `
        img, picture, video, canvas, image,
        *[style*="background-image"] {
            filter: invert(1) hue-rotate(180deg) saturate(1.12) contrast(1.05) !important;
        }
    `;
} else {

    style.textContent = `
        html {
            filter: invert(1) hue-rotate(180deg) saturate(1.12) contrast(1.05) !important;
        }

        img, picture, video, canvas, image, .gh-logo {
            filter: invert(1) hue-rotate(180deg) !important;
        }

        html, body,
        .srp-river,
        #mainContent {
            background-color: rgb(235,235,235) !important;
        }

        .vim,
        .ux-navigator__container,
        .seo-interlink {
            background: transparent !important;
        }
    `;
}

document.documentElement.appendChild(style);