Tutsplus Code

Hide readed article

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

  1. // ==UserScript==
  2. // @name Tutsplus Code
  3. // @version 1.2001
  4. // @description Hide readed article
  5. // @include https://code.tutsplus.com*
  6. // @include http://code.tutsplus.com*
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js
  8. // @namespace https://greasyfork.org/users/38384
  9. // ==/UserScript==
  10.  
  11. jQuery(function() {
  12. $("a.topic-design").closest("li").hide();
  13. $("a.topic-gamedevelopment").closest("li").hide();
  14. });