To get all 256 issues in a few minutes:
- Go here: US or EU
- Right click (anywhere) > Inspect Element > Console
- Paste (sometimes you need to refresh the page and paste again, but will be quicker the second time):
var buttons = document.getElementsByClassName('action-button buy-action primary-action');
function sleep(delay) {
var start = new Date().getTime();
while (new Date().getTime() < start + delay);
}
for (var i = 0; i < buttons.length; i++) {
if (buttons[i].firstElementChild.firstElementChild.textContent === "In Cart") {
continue
};
buttons[i].click();
sleep(600);
}
Wait a few seconds until you see "In Cart". Repeat for the next page or refresh the page and paste again if it didn't add everything.
Any JS developer out there, feel free to enhance this script!
The website has a limit of 150... So after the 4th page you will need to checkout to be able to continue