Gartic.io Çerçeve Renk

Sadece kendi avatarına kırmızı ışık saçan bir çerçeve ekler

// ==UserScript==
// @name         Gartic.io Çerçeve Renk
// @namespace    http://tampermonkey.net/
// @version      1.3
// @description  Sadece kendi avatarına kırmızı ışık saçan bir çerçeve ekler
// @author       Ryzex
// @match        *://gartic.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function addGlowingBorder() {
        let myAvatar = document.querySelector('.you .avatar');
        if (myAvatar) {
            myAvatar.style.border = "2px solid red"; 
            myAvatar.style.animation = "glowEffect 1.5s infinite alternate"; 

            // CSS Animasyonunu oluştur
            let style = document.createElement('style');
            style.innerHTML = `
                @keyframes glowEffect {
                    0% { box-shadow: 0 0 5px red; }
                    100% { box-shadow: 0 0 15px red; }
                }
            `;
            document.head.appendChild(style);
        }
    }

    setInterval(addGlowingBorder, 1000); 
})();

QingJ © 2025

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