Question:
Is there a JavaScript or other means to hide the "Select All" checkbox on the main page?
Answer:
Yes, you can disable the checkbox using custom JavaScript:
$('#cbDelAll').hide();
It's as easy as this. :)