llamasoft / Puca-Power

A JavaScript utility for better trading on PucaTrade.com
MIT License
35 stars 15 forks source link

Feature request - filter cards worth more than x #23

Open ckschu opened 8 years ago

ckschu commented 8 years ago

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.

tadhg-ohiggins commented 7 years ago

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();}})