您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
guzeltema
// ==UserScript== // @name GARTİC TEMA // @namespace http://tampermonkey.net/ // @version 1.2 // @description guzeltema // @author akira // @match https://gartic.io/* // @grant none // ==/UserScript== (function() { 'use strict'; function applyGradientColor() { document.querySelectorAll('strong[style*="cursor: pointer;"]').forEach(element => { if (!element.classList.contains('gradient-color')) { const animationName = `gradientMove-${Math.random().toString(36).substring(7)}`; const keyframes = ` @keyframes ${animationName} { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } } `; const style = document.createElement('style'); style.innerHTML = keyframes; document.head.appendChild(style); element.style.background = 'linear-gradient(90deg, yellow, orange, yellow)'; element.style.backgroundSize = '200% auto'; element.style.webkitBackgroundClip = 'text'; element.style.color = 'transparent'; element.style.animation = `${animationName} 8s linear infinite`; element.classList.add('gradient-color'); } }); } const style = document.createElement('style'); style.innerHTML = ` .soft-transition { animation-duration: 8s; animation-timing-function: ease-in-out; animation-direction: alternate; animation-iteration-count: infinite; text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor; } body { background-color: black !important; filter: saturate(1.5); } `; document.head.appendChild(style); function changeBackgroundColors() { document.querySelectorAll('div').forEach(div => { const currentColor = window.getComputedStyle(div).backgroundColor; if (currentColor !== 'rgb(0, 0, 0)' && currentColor !== 'rgba(0, 0, 0, 0)') { div.style.backgroundColor = 'black'; } }); } setInterval(() => { applyGradientColor(); changeBackgroundColors(); }, 1); const observer = new MutationObserver(() => { changeBackgroundColors(); }); observer.observe(document.body, { childList: true, subtree: true }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址