您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
BlockSuckerHuang!
// ==UserScript== // @name BlockSuckerHuang // @namespace http://tampermonkey.net/ // @version 0.1 // @description BlockSuckerHuang! // @author ... // @match https://pincong.rocks/* // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... var as = document.getElementsByTagName('a') for(var i in as){ var node = as[i]; if(node.hasAttribute == undefined){ continue; } if(!node.hasAttribute('data-id')){ continue; } var id = node.getAttribute('data-id'); if(id.toString() != '3700'){ continue; } var classType = node.getAttribute('class'); if(classType == 'aw-user-name'){ node.parentNode.style = 'display:none'; }else if(classType.indexOf('aw-user-img') >= 0){ node.parentNode.parentNode.style = 'display:none'; } } })();