sindresorhus/refined-github

The issue has been closed
Load all button #4754
eranelbaz posted onGitHub
Description
Add Load all buttons, will be very useful for noisy PRs which have a lot of events on them,
currently i'm using this snippet in my console in order to press on all the load more
buttons
$$('.merge-status-item').forEach(item => {
let icon = item.querySelector('.color-text-success');
if(icon) item.remove();
});
$$('.merge-status-item').forEach(item => {
let icon = item.querySelector('.neutral-check');
if(icon) item.remove();
});
hope you guys can put it into a button
this will be visible only on pr pages