Sitepoint

Hide readed article

当前为 2016-10-21 提交的版本,查看 最新版本

// ==UserScript==
// @name     Sitepoint
// @description Hide readed article
// @include    http://www.smashingmagazine.com/*
// @include    https://www.smashingmagazine.com/*
// @version 0.0.1.20161021155800
// @namespace https://greasyfork.org/users/38384
// ==/UserScript==

 jQuery(function() {
   var myArray = ['post-271016'];
   for (var i=0; i<myArray.length; i++) {
        jQuery("." + myArray[i] ).hide();
   }
  });