Auto-click checkboxes for "restore harvest"
By Matt Frisbie @mattfriz
Instructions for restoring harvests:
Step 1: Get to this view, showing all the plant checkboxes:
Step 2: Open Chrome developer tools
Right click the page, select "Inspect", and then click the "Console" tab at the top
(https://developer.chrome.com/docs/devtools/open/)
You will see this:
Step 3: Paste the following code in there to autocheck all the checkboxes:
[...document.querySelectorAll('#restoreplants-harvest_form input[type="checkbox"]')].map(input => input.click())
Step 4: Hit enter to run the code. Done!