Checking all Boxes in SF Setup

PHOTO EMBED

Tue Feb 11 2025 16:37:34 GMT+0000 (Coordinated Universal Time)

Saved by @selmo

Array.prototype.slice.call(document.querySelectorAll('input[type="checkbox"]')).forEach(function(e){e.setAttribute("checked","checked");});  
content_copyCOPY

if you ever need to check all the boxes in Setup you can use this code on the console of the browser