深藍背景加狙擊鏡

Theme for Shell shockers

  1. // ==UserScript==
  2. // @name 深藍背景加狙擊鏡
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Theme for Shell shockers
  6. // @author YTshellryan
  7. // @match https://shellshock.io/
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. const addScript=()=>{
  14. document.title = 'Dark Theme';
  15. var style = document.createElement('link');
  16. style.rel = 'stylesheet';
  17. style.href = 'https://dark-blue.plund1991.repl.co/style.css';
  18. document.head.appendChild(style);
  19. }
  20. if(document.body){
  21. addScript();
  22. }else{
  23. document.addEventListener('DOMContentLoaded', function(e){
  24. addScript();
  25. })
  26. }
  27. })();

QingJ © 2025

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