Hide readed article
当前为
// ==UserScript==
// @name TED
// @version 1
// @description Hide readed article
// @include https://www.ted.com/*
// @include http://www.ted.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js
// @namespace https://greasyfork.org/users/38384
// ==/UserScript==
$(function() {
var myArray = ['why_gun_violence', 'angelica_dass'];
for (var i=0; i<myArray.length; i++) {
$('a[href*='+myArray[i]+']').closest('.col').css("opacity", "0.1");
}
});