Autoclicker for One Million Checkboxes
I've created a bookmarklet autoclicker for One Million Checkboxes. Here is the source code:
(() => {
alert('Autoclicker started. If prompted, disallow alerts in the next alert.'); // First alert box.
alert('Disable me!'); // Immediately a second alert box. Should give the user an option to disallow alerts in the running session of the site.
setInterval(() => {
const cb = document.querySelector('input[type=checkbox]:not(:checked):not([disabled])'); // Get the checkbox
if (!cb) return; // Skip this iteration if none was found
cb.click(); // Activate the checkbox