Greasy Fork镜像 支持简体中文。

Shell Shockers Rainbow Theme

Adds a beautiful rainbow background to Shell Shockers That Changes Colors every second.

  1. // ==UserScript==
  2. // @name Shell Shockers Rainbow Theme
  3. // @namespace http://tampermonkey.net/
  4. // @version V1
  5. // @description Adds a beautiful rainbow background to Shell Shockers That Changes Colors every second.
  6. // @author CoffeeGamer2025
  7. // @match https://shellshock.io/*
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Inject CSS for the rainbow background
  15. GM_addStyle(`
  16. body {
  17. background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
  18. background-size: 400% 400%;
  19. animation: rainbowAnimation 10s ease infinite;
  20. }
  21.  
  22. @keyframes rainbowAnimation {
  23. 0% { background-position: 0% 50%; }
  24. 50% { background-position: 100% 50%; }
  25. 100% { background-position: 0% 50%; }
  26. }
  27.  
  28. /* Optional: Make the background cover the whole page */
  29. html, body {
  30. height: 100%;
  31. margin: 0;
  32. }
  33. `);
  34. })();

QingJ © 2025

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