Light theme - html.it

27/9/2022, 15:52:47

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        Light theme - html.it
// @namespace   Violentmonkey Scripts
// @match       https://www.html.it/*
// @grant       none
// @version     1.0
// @author      Luca Frigenti
// @description 27/9/2022, 15:52:47
// @license MIT
// @require https://cdn.jsdelivr.net/npm/@violentmonkey/dom@2
// ==/UserScript==
const disconnect = VM.observe(document.body, () => {
  for (item of document.getElementsByTagName('p')) { item.style.color = "#000" }
  for (item of document.getElementsByTagName('h1')) { item.style.color = "#000" }
  for (item of document.getElementsByTagName('div')) { item.style.color = "#000" }
  document.getElementsByClassName('main-wrapper')[0].style.background = "#f3f3f3";
  document.getElementsByClassName('main-container')[0].style.background = "#f3f3f3";
  disconnect();
});