Blank Template For ShellShockers Theme Designers - Beginner

Intructions contained (Video tutorial coming soon)

  1. // ==UserScript==
  2. // @name Blank Template For ShellShockers Theme Designers - Beginner
  3. // @description Intructions contained (Video tutorial coming soon)
  4. // @namespace http://tampermonkey.net/
  5. // @version 1.0
  6. // @author Penguinie
  7. // @match https://shellshock.io/*
  8. // @grant none
  9. // @run-at document-start
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. const addScript=()=>{
  14. document.title = 'Theme Template';
  15.  
  16. var style = document.createElement('link');
  17. style.rel = 'stylesheet';
  18. style.href = 'https://theme-template.plund1991.repl.co/style.css';
  19. document.head.appendChild(style);
  20. }
  21. if(document.body){
  22. addScript();
  23. }else{
  24. document.addEventListener('DOMContentLoaded', function(e){
  25. addScript();
  26. })
  27. }
  28. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址