Onze Olva

Maak olva communistisch

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         Onze Olva
// @namespace    Jonathan Dhoop
// @version      0.1
// @description  Maak olva communistisch
// @author       Jonathan Dhoop
// @match        https://mijn.olva.be/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.getElementById("header").firstElementChild.firstElementChild.firstElementChild.src = "https://i.ibb.co/9N13gqf/olva.png";
    document.getElementsByTagName("body")[0].style.backgroundColor= "#FA5858";
    document.getElementById("navigatie").style.backgroundColor = 'red';
    document.getElementById("navigatie").style.border = "black solid 1px";
    document.getElementsByClassName("middendeel")[0].style.backgroundColor = "#FD7C7C";
    document.getElementsByClassName("middendeel")[1].style.backgroundColor = "#FD7C7C";
    document.getElementsByClassName("middendeel")[2].style.backgroundColor = "#FD7C7C";
    document.getElementsByClassName("middendeel")[3].style.backgroundColor = "#FD7C7C";
    let sound = new Audio("https://www.marxists.org/history/ussr/sounds/mp3/soviet-anthem1944.mp3");
    sound.play();
})();