您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A New Theme Developed And Designed By Coderable.
- // ==UserScript==
- // @name Doodle Theme (Shellshock.io)
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description A New Theme Developed And Designed By Coderable.
- // @author Coderable
- // @match https://shellshock.io/
- // @match https://algebra.best/
- // @match https://eggcombat.com/*
- // @match https://shellshock.io/*
- // @match https://eggfacts.fun/*
- // @match https://biologyclass.club/*
- // @match https://egghead.institute/*
- // @match https://egg.dance/*
- // @match https://eggisthenewblack.com/*
- // @match https://mathfun.rocks/*
- // @match https://hardboiled.life/*
- // @match https://overeasy.club/*
- // @match https://zygote.cafe/*
- // @match https://mathdrills.info
- // @match https://eggsarecool.com/*
- // @match https://deadlyegg.com/*
- // @match https://mathgames.world/*
- // @match https://hardshell.life/*
- // @match https://violentegg.club/*
- // @match https://yolk.life/*
- // @match https://softboiled.club/*
- // @match https://scrambled.world/*
- // @match https://deathegg.world/*
- // @match https://violentegg.fun/*
- // @icon https://shellshock.io/favicon192.png
- // @grant none
- // @lisense MIT
- // ==/UserScript==
- (function() {
- const addScript=()=>{
- document.title = 'Shell Shockers | By Coderable';
- var style = document.createElement('link');
- style.rel = 'stylesheet';
- style.href = 'https://redirect.coderable.studio/Shell.css';
- document.head.appendChild(style);
- }
- if(document.body){
- addScript();
- }else{
- document.addEventListener('DOMContentLoaded', function(e){
- addScript();
- })
- }
- })();