Poorly Drawn Shell Shockers Theme

Shell Shockers but drawn by me (bad)

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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);