Tutsplus Code

Hide readed article

  1. // ==UserScript==
  2. // @name Tutsplus Code
  3. // @version 1.2001
  4. // @description Hide readed article
  5. // @include https://tutsplus.com/*
  6. // @include http://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. $("a.topic-photography").closest("li").hide();
  15.  
  16. });