Scope Theme - K4hhny

Same Scope K4hhny Uses

// ==UserScript==
// @name         Scope Theme - K4hhny
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Same Scope K4hhny Uses
// @author       Stormii Cloud
// @match        https://shellshock.io/
// @grant        none
// ==/UserScript==

(function () {
    const addScript = () => {
        document.head.innerHTML += `<style>
*{

#maskmiddle {
    background: url('https://cdn.discordapp.com/attachments/743631842527150122/954343221088092220/scope.png') center center no-repeat;
    background-size: contain;
    width: 100vh;
    height: 100vh;
}

#maskleft, #maskright {
	background: black;
	flex: 1;
}
</style>`
    }
    document.body ? addScript() : document.addEventListener("DOMContentLoaded", e => addScript());
})();