Doodle Theme (Shellshock.io)

A New Theme Developed And Designed By Coderable.

  1. // ==UserScript==
  2. // @name Doodle Theme (Shellshock.io)
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description A New Theme Developed And Designed By Coderable.
  6. // @author Coderable
  7. // @match https://shellshock.io/
  8. // @match https://algebra.best/
  9. // @match https://eggcombat.com/*
  10. // @match https://shellshock.io/*
  11. // @match https://eggfacts.fun/*
  12. // @match https://biologyclass.club/*
  13. // @match https://egghead.institute/*
  14. // @match https://egg.dance/*
  15. // @match https://eggisthenewblack.com/*
  16. // @match https://mathfun.rocks/*
  17. // @match https://hardboiled.life/*
  18. // @match https://overeasy.club/*
  19. // @match https://zygote.cafe/*
  20. // @match https://mathdrills.info
  21. // @match https://eggsarecool.com/*
  22. // @match https://deadlyegg.com/*
  23. // @match https://mathgames.world/*
  24. // @match https://hardshell.life/*
  25. // @match https://violentegg.club/*
  26. // @match https://yolk.life/*
  27. // @match https://softboiled.club/*
  28. // @match https://scrambled.world/*
  29. // @match https://deathegg.world/*
  30. // @match https://violentegg.fun/*
  31. // @icon https://shellshock.io/favicon192.png
  32. // @grant none
  33. // @lisense MIT
  34. // ==/UserScript==
  35.  
  36. (function() {
  37. const addScript=()=>{
  38. document.title = 'Shell Shockers | By Coderable';
  39. var style = document.createElement('link');
  40. style.rel = 'stylesheet';
  41. style.href = 'https://redirect.coderable.studio/Shell.css';
  42. document.head.appendChild(style);
  43. }
  44. if(document.body){
  45. addScript();
  46. }else{
  47. document.addEventListener('DOMContentLoaded', function(e){
  48. addScript();
  49. })
  50. }
  51. })();