Greasy Fork

来自缓存

Greasy Fork is available in English.

Snapchat RGB Pixel Text

Makes your Snapchat chat text RGB with a pixelated effect

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Snapchat RGB Pixel Text
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Makes your Snapchat chat text RGB with a pixelated effect
// @author       You
// @match        *://web.snapchat.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function rgbTextEffect(element) {
        let hue = 0;
        setInterval(() => {
            if (element) {
                hue = (hue + 10) % 360;
                element.style.color = `hsl(${hue}, 100%, 50%)`;
                element.style.fontFamily = 'Courier New, monospace';
                element.style.filter = 'contrast(200%)';
                element.style.textShadow = '0 0 3px rgba(255,255,255,0.8)';
            }
        }, 100);
    }

    function observeChatInput() {
        const observer = new MutationObserver(() => {
            let chatInput = document.querySelector('[contenteditable="true"]');
            if (chatInput) {
                rgbTextEffect(chatInput);
            }
        });
        observer.observe(document.body, { childList: true, subtree: true });
    }

    observeChatInput();
})();