Tutsplus Code

Hide readed article

03.03.2017 itibariyledir. En son verisyonu görün.

// ==UserScript==
// @name     Tutsplus Code
// @version	1
// @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() {

    jQuery.ajaxPrefilter( function (options) {
      if (options.crossDomain && jQuery.support.cors) {
        var http = (window.location.protocol === 'http:' ? 'http:' : 'https:');
        options.url = http + '//cors-anywhere.herokuapp.com/' + options.url;
      }
    });
    
    jQuery.get('http://www.mycodemyway.in/txt/tutsplus_code.txt', function (response) {
        var res = response.split(",");
        var resLength = res.length;

        for (var i=0; i<resLength; i++) {
            jQuery("a.posts__post-preview").each(function () {
debugger;
                var href = jQuery(this).prop('href');
                if (href.indexOf(res[i]) != -1) {
                    jQuery(this).parents("li").hide();
                }
            });
       }
    });
});