Restrict certain actions to plugin-specific admin menu pages only

The slug returned by add_menu_page() is the name of an action.

foreach ( $menu_pages as $action )
    add_action( $action, "callback_handler" );

See the comments in my demo plugin T5 Admin Menu Demo.