您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
tThis script is basic asf, only deletes badges (no willing to update, you can easily update it by inspect element duh)
当前为
// ==UserScript== // @name Delete annoying badges! // @namespace http://tampermonkey.net/ // @version 2024-07-26 // @description tThis script is basic asf, only deletes badges (no willing to update, you can easily update it by inspect element duh) // @author Abeja // @match https://www.pathofexile.com/forum/view-thread/* // @match https://www.pathofexile.com/forum/post-reply/* // @icon https://www.google.com/s2/favicons?sz=64&domain=pathofexile.com // @grant none // @license MIT // ==/UserScript== (function() { window.addEventListener('load', function() { Element.prototype.remove = function() { this.parentElement.removeChild(this); } NodeList.prototype.remove = HTMLCollection.prototype.remove = function() { for(var i = this.length - 1; i >= 0; i--) { if(this[i] && this[i].parentElement) { this[i].parentElement.removeChild(this[i]); } } } document.getElementsByClassName("badges ").remove(); }, false); 'use strict'; // Bees all over the world, sorry GGG but badges are annoying asf })();