// ==UserScript== // @name Boolet Theme // @namespace http://tampermonkey.net/ // @license MIT // @version 0.1 // @description Boolet' theme // @author Made By Not Revan designed by Bruhseidon // @match https://shellshock.io/ // @icon https://media.discordapp.net/attachments/1110510036943384668/1160922228695777300/image.png?ex=65366c14&is=6523f714&hm=1bd1b1f4765716b718e76479ff40c4007db9862bfacae74b6938e80a4f2038ff&= // @grant none // @downloadURL none // ==/UserScript== let style = document.createElement('link'); style.rel = 'stylesheet'; style.href = 'https://boolet-theme.bluetack.repl.co/style.css'; document.head.appendChild(style); (function () { const addScript = () => { document.title="Boolet" document.head.innerHTML += `` } document.body ? addScript() : document.addEventListener("DOMContentLoaded", e => addScript()); })();