Profession.hu Dark Mode

Sötét mód a profession.hu oldalhoz, legalább nem égetti ki a szemem éjszaka

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 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        Profession.hu Dark Mode
// @namespace   Violentmonkey Scripts
// @match       https://www.profession.hu/*
// @grant       none
// @version     1.0
// @author      Frank
// @description Sötét mód a profession.hu oldalhoz, legalább nem égetti ki a szemem éjszaka
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    const style = document.createElement('style');
    style.innerHTML = `
        /* Az egész oldal invertálása */
        html {
            filter: invert(0.9) hue-rotate(180deg) !important;
            background-color: #000 !important;
        }

        /* Képek, logók és videók visszainvertálása, hogy ne legyenek "negatív" hatásúak */
        img,
        video,
        iframe,
        .company-logo,
        [style*="background-image"] {
            filter: invert(1) hue-rotate(180deg) !important;
        }

        /* Fehér háttér fixálása a kártyáknál, hogy ne legyen túl világos */
        body {
            background-color: #121212 !important;
        }

        /* Néhány elem finomhangolása, ha szükséges */
        .job-card, .search-bar {
            box-shadow: 0 4px 6px rgba(255,255,255,0.1) !important;
        }
    `;
    document.head.appendChild(style);
})();