From 6daf4a01ae7a888ad5d1f1f68619cf3b8d5abbeb Mon Sep 17 00:00:00 2001 From: Dan Jones Date: Fri, 2 Dec 2016 10:32:48 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Initial=20stable=20version=20of?= =?UTF-8?q?=20giveaway?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- giveaway.user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/giveaway.user.js b/giveaway.user.js index 6189a90..0742c61 100644 --- a/giveaway.user.js +++ b/giveaway.user.js @@ -3,6 +3,7 @@ // @namespace danielrayjones // @description Allow removal of visited links on Amazon Giveaway Listing // @include https://giveawaylisting.com/ +// @version 1.0 // ==/UserScript== var hideVisited = function(evt) { @@ -10,7 +11,6 @@ var hideVisited = function(evt) { var $links = $jq('#giveaways a[href*="amzn.to"]'); $links.each(function() { - console.log(this); var href = $jq(this).attr('href'); if (localStorage.getItem(href)) { $jq(this).parent('td').parent('tr').css('display', checked ? 'none' : 'table-row');