// ==UserScript== // @name Purple Shell Shocker Theme - Custom Scope CrossHair And HealthBar // @namespace http://urfat.com/ // @version 1.1 // @description A Purple Shell Shocker Theme // @author Cluck36 // @match https://shellshock.io/* // @grant none // @downloadURL none // ==/UserScript== (function () { const addScript = () => { document.title = "Shell Shockers (Purple)" document.head.innerHTML += `` } document.body ? addScript() : document.addEventListener("DOMContentLoaded", e => addScript()); })();