// ==UserScript== // @name 爱否类别隐藏 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match http://www.aifou.cn/* // @grant none // @downloadURL none // ==/UserScript== (function() { //'use strict'; $("img[data-level='4']").parent().parent().hide(); $("img[data-level='5']").parent().parent().hide(); // Your code here... })();