Onze Olva

Maak olva communistisch

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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