Scope Theme - Moon

Same Scope That Moon Uses

当前为 2023-09-10 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Scope Theme - Moon
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Same Scope That Moon Uses
  6. // @author Stormii Cloud
  7. // @match https://shellshock.io/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. const addScript = () => {
  13. document.head.innerHTML += `<style>
  14. *{
  15.  
  16. #maskmiddle {
  17. background: url('https://i.imgur.com/HKDotWT.jpg') center center no-repeat;
  18. background-size: contain;
  19. width: 100vh;
  20. height: 100vh;
  21. }
  22.  
  23. #maskleft, #maskright {
  24. background: black;
  25. flex: 1;
  26. }
  27. </style>`
  28. }
  29. document.body ? addScript() : document.addEventListener("DOMContentLoaded", e => addScript());
  30. })();