// ==UserScript== // @name BN-Dload // @namespace http://www.mailinator.com/J-man // @include https://mynook.barnesandnoble.com/library.html* // @grant none // @version 20121119 // ==/UserScript== function doIt() { if ($('#adl1').length == 0) { $('[action$="deleteItem"]').each(function(index) { if ($(this).parent().find('[action$="EDSDeliverItem.aspx"]').length == 0) { var delid = $(this).find('input').attr('value'); $(this).after('
'); } }); } setTimeout (function() { doIt(); }, 3000 ); } doIt();