您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes your Snapchat chat text RGB with a pixelated effect
- // ==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();
- })();