💪 Support new layout
This commit is contained in:
parent
a6b6858ffc
commit
89d87c706b
1 changed files with 3 additions and 3 deletions
|
|
@ -4,7 +4,7 @@
|
||||||
// @description Allow removal of visited links on Amazon Giveaway Listing
|
// @description Allow removal of visited links on Amazon Giveaway Listing
|
||||||
// @include https://smile.amazon.com/ga/giveaways*
|
// @include https://smile.amazon.com/ga/giveaways*
|
||||||
// @include https://www.amazon.com/ga/giveaways*
|
// @include https://www.amazon.com/ga/giveaways*
|
||||||
// @version 1.4
|
// @version 1.5
|
||||||
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js
|
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js
|
||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
|
|
||||||
|
|
@ -15,7 +15,7 @@ var getSmallUrl = function(fullUrl) {
|
||||||
};
|
};
|
||||||
|
|
||||||
var hideOne = function(el) {
|
var hideOne = function(el) {
|
||||||
$(el).parents('div.a-spacing-base').css('display', checked ? 'none' : 'block');
|
$(el).parents('.giveawayItemContainer').css('display', checked ? 'none' : 'block');
|
||||||
};
|
};
|
||||||
|
|
||||||
var hideVisited = function(evt) {
|
var hideVisited = function(evt) {
|
||||||
|
|
@ -38,6 +38,6 @@ $(document).ready(function() {
|
||||||
hideOne(this);
|
hideOne(this);
|
||||||
});
|
});
|
||||||
|
|
||||||
$('h1:contains("Giveaways")').after('<label><input type="checkbox" id="hide_visited"/> Visited</label>');
|
$('#giveaway-result-info-bar-content').append('<label><input type="checkbox" id="hide_visited"/> Visited</label>');
|
||||||
$('#hide_visited').on('click', hideVisited);
|
$('#hide_visited').on('click', hideVisited);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue