In Magento, You can export products in CSV file with all product attribute/fields. if you need to export only few product fields then you need to exclude fields by select all the checkboxes…but when product fields/attributes are more then we waste time and clicks.
I suggest you, Please insert this javascript into console window and execute to select all the checkboxes… then you can unselect the ones you want.
var inputs = document.getElementsByTagName("input");
for(var i = 0; i < inputs.length; i++) {
if(inputs[i].type == "checkbox") {
inputs[i].checked = true;
}
}
I hope this blog is helpful for you…