Update, remove or redirect the plugins menu item.
<?php
return [
'wp-admin.$role|$username' => [
'plugins',
'plugins' => (string) $route,
'plugins.title' => (string) $title,
'plugins.icon' => (string) $dashicon,
],
];
Remove from menu;
<?php
return [
'wp-admin.$role|$username' => [
'plugins',
],
];
Remove from menu and enforce a page redirect;
<?php
return [
'wp-admin.$role|$username' => [
'plugins' => 'posts',
],
];