Onze Olva

Maak olva communistisch

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