To check all checkboxes in a web page, open DevTools with F12, paste the following code into the console, and execute it.
| |
Alternatively,
Create a new bookmark, and in the address field when registering (where you usually enter https://…), paste the following code and save it. Display the web page where you want to check the boxes, and click the created bookmark to check all checkboxes.
| |
If you want to uncheck all, change the boxes[i].checked = true; part of the above script to boxes[i].checked = false;.
