TPC Filter

try to take over the world!

目前为 2017-12-25 提交的版本。查看 最新版本

// ==UserScript==
// @name         TPC Filter
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://tipidpc.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    $("li:contains('lineage')").remove();
})();