Puca-Power
Puca-Power copied to clipboard
Feature request - filter cards worth more than x
Hi, right now there is an option to filter out small cards. I would appreciate a way to filter out expensive cards as well so I can send out bulk. Thanks for your work.
I'd also like this feature. In the meantime, entering this in the console will, at least in Chrome, hide all rows for cards above 700 points:
$("td.value").each(function(x, y) { if (parseInt($(y).text()) > 700) { $(y).parent().hide();}})
Reloading the page will show them again, or you can do this:
$("td.value").each(function(x, y) { if (parseInt($(y).text()) > 700) { $(y).parent().show();}})