您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
whatever it says in the name
// ==UserScript== // @name Nitro Gifter image badge // @namespace http://tampermonkey.net/ // @version 69.0 // @description whatever it says in the name // @author Ghost // @match *://pixelplace.io/* // @grant none // ==/UserScript== (function() { 'use strict'; function replaceNitroImage() { var nitroImages = document.querySelectorAll('img[src="/img/badges/nitro.png"]'); nitroImages.forEach(function(img) { img.src = 'https://cdn.discordapp.com/attachments/683339565687504962/1247947223300575344/5ry6.png?ex=6661e0eb&is=66608f6b&hm=f8846bd6d4032d343ce744aca63eae93ef09460c044630c62908549a1920799a&'; }); } window.addEventListener('load', replaceNitroImage); setInterval(replaceNitroImage, 3000); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址