how to show the tables of my plugin in the export tab of WordPress?

The Core export function only outputs data from the prefix_posts and prefix_postmeta tables, so it would take a lot of doing to extend it to export other tables entirely, especially since it converts everything to XML.

Instead of trying to modify this core function, it would be much simpler if your plugin’s data could be saved in those tables by using custom post types instead of custom tables. As you can see in your screen shot the custom post type “Movies” automatically appears here. This would be more futureproof than extending core functionality.