您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Profiler declutter-er dedicated to removing Paintings/NFT's from any profile.
// ==UserScript== // @name Remove Paintings // @namespace http://tampermonkey.net/ // @version 2024-11-17 // @description Profiler declutter-er dedicated to removing Paintings/NFT's from any profile. // @author Realwdpcker // @match pixelplace.io/* // @icon https://cdn-icons-png.flaticon.com/512/1158/1158164.png // @grant none // ==/UserScript== (function() { 'use strict'; function removepaintingclutter(selector) { const elements = document.querySelectorAll(selector); elements.forEach(el => el.remove()); } const elementchecker = new MutationObserver(() => { const profile = document.querySelector('#profile .box-x .box-content-x div'); if (profile) { removepaintingclutter('#profile .inv-framed.pt-20'); elementchecker.disconnect(); } }); elementchecker.observe(document.body, { childList: true, subtree: true }); })();