You can remove this feature via Hook, see the how to on https://github.com/bueltge/wordpress-multisite-enhancements/wiki/Remove-features
<?php
/**
* Plugin Name: Multisite Enhancements Add-on to remove features
* Description: This plugin remove features from the Multisite Enhancement plugin.
* Plugin URI: https://github.com/bueltge/WordPress-Multisite-Enhancements
* Version: 2017-11-26
* Author: Frank Bültge
* Author URI: http://bueltge.de
* License: GPLv2+
* License URI: ./assets/LICENSE
* Text Domain: multisite-enhancements
* Domain Path: /languages
* Network: true
*
* @package WordPress
*/
! defined( 'ABSPATH' ) and exit;
add_filter( 'multisite_enhancements_autoload', function ( $files ) {
// Unset features by unsetting the filename from the autoloader.
unset( $files[ 'class-add-site-status-labels.php' ] );
return $files;
} );