Poorly Drawn Shell Shockers Theme

Shell Shockers but drawn by me (bad)

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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         Poorly Drawn Shell Shockers Theme
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Shell Shockers but drawn by me (bad)
// @author       Jayvan
// @match        https://shellshock.io/
// @icon         https://cdn1.iconfinder.com/data/icons/logos-brands-in-colors/231/among-us-player-white-512.png
// @grant        none
// ==/UserScript==

//font
var meta = document.createElement('meta');
meta.httpEquiv = "X-UA-Compatible";
meta.content = "ie-edge";
document.getElementsByTagName('head')[0].appendChild(meta);

let font = document.createElement('link');
font.rel = 'stylesheet';
font.href='https://shellthemes.jayvan229.repl.co/FONT/stylesheet.css';
document.head.appendChild(font);
//font end
let style = document.createElement('link');
style.rel = 'stylesheet';
style.href = 'https://shellthemes.jayvan229.repl.co/poorlydrawn.css';
document.head.appendChild(style);

setTimeout(function(){
    document.getElementById("logo").innerHTML = "<img src='https://cdn.discordapp.com/attachments/811268272418062359/887069850046959696/unknown-removebg-preview_9.png'>";
}, 2000);