Custom Change Color Script

Per 26-11-2024. Zie de nieuwste versie.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey, Greasemonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Userscripts.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een gebruikersscriptbeheerder nodig.

(Ik heb al een user script manager, laat me het downloaden!)

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

(Ik heb al een beheerder - laat me doorgaan met de installatie!)

// ==UserScript==
// @name            Custom Change Color Script
// @name:ru         Пользовательский скрипт для замены цветов
// @namespace       http://tampermonkey.net/
// @version         1.1
// @description:en  Change specific colors to another on selected domains
// @description:ru  Заменяет указанные цвета на других доменах
// @author          shaman
// @match           *://*/*
// @grant           none
// @license         GPL-3.0
// ==/UserScript==

const SOURCE_COLOR = '#5cdd8b';
const TARGET_COLOR = '#93fab9';
const ALLOWED_DOMAINS = ['example.com', 'anotherdomain.com']; // Список доменов

(function() {
    'use strict';

    const currentDomain = window.location.hostname;

    if (!ALLOWED_DOMAINS.some(domain => currentDomain.includes(domain))) {
        return;
    }

    function hexToRgb(hex) {
        const bigint = parseInt(hex.slice(1), 16);
        const r = (bigint >> 16) & 255;
        const g = (bigint >> 8) & 255;
        const b = bigint & 255;
        return `rgb(${r}, ${g}, ${b})`;
    }

    const sourceRgb = hexToRgb(SOURCE_COLOR);
    const targetColor = TARGET_COLOR;

    function updateColors() {
        document.querySelectorAll('*').forEach(el => {
            const styles = getComputedStyle(el);
            if (styles.color === sourceRgb) {
                el.style.setProperty('color', targetColor, 'important');
            }
            if (styles.backgroundColor === sourceRgb) {
                el.style.setProperty('background-color', targetColor, 'important');
            }
            if (styles.borderColor === sourceRgb) {
                el.style.setProperty('border-color', targetColor, 'important');
            }
        });
    }

    function processShadowRoots(node) {
        if (node.shadowRoot) {
            updateColorsInShadow(node.shadowRoot);
        }
        node.childNodes.forEach(child => processShadowRoots(child));
    }

    function updateColorsInShadow(shadowRoot) {
        shadowRoot.querySelectorAll('*').forEach(el => {
            const styles = getComputedStyle(el);
            if (styles.color === sourceRgb) {
                el.style.setProperty('color', targetColor, 'important');
            }
            if (styles.backgroundColor === sourceRgb) {
                el.style.setProperty('background-color', targetColor, 'important');
            }
            if (styles.borderColor === sourceRgb) {
                el.style.setProperty('border-color', targetColor, 'important');
            }
        });
    }

    const observer = new MutationObserver(() => {
        updateColors();
        processShadowRoots(document.body);
    });

    observer.observe(document.body, { childList: true, subtree: true });

    updateColors();
    processShadowRoots(document.body);
})();