If you want to hide a plugin name from the WordPress backend for whatever reason, you can use this piece of code in the functions file on your active theme:
function hide_plugin_reallusion() {
global $wp_list_table;
$hidearr = array('plugin-folder/plugin.php');
$myplugins = $wp_list_table->items;
foreach ($myplugins as $key => $val) {
if (in_array($key,$hidearr)) {
unset($wp_list_table->items[$key]);
}
}
}
add_action('hide_plugin_backend', 'hide_plugin_reallusion');
Or make this into plugin? Why not – plugins for everyone, let’s get covered in plugins.