// ==UserScript==
// @name Tide League Shell Shockers Theme
// @namespace http://tampermonkey.net/
// @version 1
// @description SS Theme for TL
// @author Jayvan
// @match https://shellshock.io/
// @grant none
// @downloadURL https://update.greasyfork.icu/scripts/436824/Tide%20League%20Shell%20Shockers%20Theme.user.js
// @updateURL https://update.greasyfork.icu/scripts/436824/Tide%20League%20Shell%20Shockers%20Theme.meta.js
// ==/UserScript==
(function() {
const theme=()=>{
document.title = 'Tide League';
let style = document.createElement('link');
style.rel = 'stylesheet';
style.href = 'https://Tide-League-Theme.jayvan229.repl.co/style.css';
document.head.appendChild(style);
setTimeout(function(){
document.getElementById("logo").innerHTML = "
";
document.getElementById("shellshockers_titlescreen_wrap").innerHTML = "

";
}, 2000);
}
if(document.body){
theme();
}else{
document.addEventListener('DOMContentLoaded', function(load){
theme();
})
}
})();