Open Developer Tools by right mouse click => Inspect
setInterval(() => {
var btn = document.querySelector(
".community-points-summary .claimable-bonus__icon"
);
btn && btn.click();
}, 5000);// sets interval for searching +50 button
setInterval(() => {
// queries DOM for button
var btn = document.querySelector(
".community-points-summary .claimable-bonus__icon"
);
// checks if button present, if so clicks
btn && btn.click();
// searches for button each 5000 miliseconds
}, 5000);No, you have to run it again on page reload. If you wanna automate you need to find Chromium extension.
