Tüm checkboxları seçmek ve işaretlemek için gerekli bir kod parçacıgı bu Google Chrome Konsolda çalışır.
var checkboxes = document.querySelectorAll('input[type="checkbox"][name="file_public"]');
checkboxes.forEach(function(checkbox) {
checkbox.checked = true;
});