This code will add "Media" to WP All Export and WP All Import's drop-down options when choosing a post type to export/import. This allows you to directly edit specific fields for media library items, but it does not allow you to import new media library items.
The code needs to be saved in your child theme's functions.php file, or in a Code Snippets plugin.
// Add "Media" to export drop-down
add_filter( 'wpallexport_custom_types', 'my_add_custom_type', 10, 1 );