Wallpaper only, no UI changes
// ==UserScript==
// @name Clean Blue Wizard Digital Wallpaper!
// @namespace http://tampermonkey.net/
// @version 1.1
// @author ArhamZeeshan
// @license GPL-3.0
// @description Wallpaper only, no UI changes
// @match https://shellshock.io/*
// @grant none
// ==/UserScript==
(function () {
const img = "https://bluewizard.com/wp-content/uploads/2021/10/BWD_Wallpaper.png?utm_campaign=Shell-welcome-email&utm_medium=email&utm_source=newsletter&utm_content=wallpaper";
const style = document.createElement("style");
style.innerHTML = `
body {
background-image: url("${img}") !important;
background-size: cover !important;
background-position: center !important;
background-repeat: no-repeat !important;
}
`;
document.head.appendChild(style);
})();