您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Filter out available/requested items
// ==UserScript== // @name Filtering Petio // @namespace http://tampermonkey.net/ // @version 0.5 // @description Filter out available/requested items // @author u/lifthrasir6 // @match http://192.168.2.6:7777/* // @grant none // ==/UserScript== (function() { 'use strict'; let i=0; function init() { console.log("init") i++ for (let item of document.getElementsByClassName("on-server")) { //item.style.opacity = 0.05 item.style.display = "none" } for (let item of document.getElementsByClassName("requested")) { //item.style.opacity = 0.05 item.style.display = "none" } if(i<5){ setTimeout(init, 1500); } } setTimeout(init, 1000); })();