Profession.hu Dark Mode

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

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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