爱否类别隐藏

try to take over the world!

目前為 2019-08-15 提交的版本,檢視 最新版本

// ==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
// ==/UserScript==

(function() {
    //'use strict';
    $("img[data-level='4']").parent().parent().hide();
    $("img[data-level='5']").parent().parent().hide();
    // Your code here...
})();