// ==UserScript== // @name SuS Shell Shockers Theme // @namespace http://tampermonkey.net/ // @version 0.1 // @description sussy shell theme // @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 // @downloadURL none // ==/UserScript== document.title="SuS"; setTimeout(function(){ document.getElementById("logo").innerHTML = ""; }, 2000); let style = document.createElement('link'); style.rel = 'stylesheet'; style.href = 'https://SuS.jayvan229.repl.co/style.css'; document.head.appendChild(style);