@nagy
function.php of plugin, after line #14:
foreach($prepared_items as $row_id => $data) {
You could add:
sleep(1);
To simply process 1 listing per second.
You could also use usleep, that use as parameter microseconds instead of seconds, so you could write same as with sleep:
usleep(1000000);