Tutsplus Code

Hide readed article

当前为 2018-06-22 提交的版本,查看 最新版本

// ==UserScript==
// @name     Tutsplus Code
// @version	1.2001
// @description Hide readed article
// @include    https://code.tutsplus.com*
// @include    http://code.tutsplus.com* 
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js
// @namespace https://greasyfork.org/users/38384
// ==/UserScript==

jQuery(function() {
    $("a.topic-design").closest("li").hide();
    $("a.topic-gamedevelopment").closest("li").hide();  
});