function checkAllSitemapLiteBoxes() {
// Get all input elements with the specified name
var checkboxes = document.getElementsByName('sitemaplite_document_source_modules[]');
// Loop through the NodeList and check each checkbox
for (var i = 0; i < checkboxes.length; i++) {
checkboxes[i].checked = true;
}
}
// Call the function to check all checkboxes
checkAllSitemapLiteBoxes();
위 코드를 브라우저 콘솔창에 입력하시면 됩니다.