Nitro Gifter image badge

whatever it says in the name

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==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);
})();