Tag Archives: guide

Chromium configuration pages, useful ‘Experiments’ to turn on/off

Chrome/Chromium has an “Experiments” page that you can change some of its features. For example if you do not use the Search tabs function (a little button on the very top right next to the minimize, this is where you are able to switch it off.

Simply type in the address bar:

chrome://flags/

Another page is called “Chrome URLs”, this has a list of all the internal chrome pages available. It lists pages such as //versions, to see the browser version or the known ones like //extensions, //downloads and the above //flags page. Further below you’ll also see available commands which can be executed by visiting a page, for example chrome://restart/ (as the name implies, it restarts chrome).

‘Experiments’ to turn on/off

QR Generator

I personally disabled the QR Generator, I never used it, if I do suddenly have a need to use it, I can return and switch it on, but for now it seems useless to have on. If I’m sharing something, I’ll just share the URL itself. This is more of a fancy way of sharing something or if you’re using it for posters or flyers and it’s a little too long to type.

Smooth Scrolling

I forced this from default to enabled, I honestly saw no real difference, maybe it was on, but my scrolling still feels like it could be more smoother, anyway.

Experimental QUIC protocol

A new protocol that essentially uses UDP, but improves some of the negatives of UDP and the positives of TCP. In 2021 IETF did release a proposed standard on it so it’s official. The purpose is pretty straight forward, cut down the time it takes to establish connection, thus speed up the whole process and also lesson the the congestion over our lines.

Remove Tabsearch Button

Never used it. It’s the icon that appears left of the minimize button, useful if you want to search tabs, however oddly just searches the tab titles, I guess only useful if you have hundreds of open tabs. Alternatively I much prefer the extension Search all Tabs by lunu.bounir as that actually search all your tabs, as if you’re finding something on a page, but every tab.

Disabling Windows 10 telemetry & other things

Via the Group Policy Editor.

Open up the Group Policy Editor by launching gpedit.msc as an administrator. Go through Computer Configuration > Administrative Templates > Windows Components > Data Collection and Preview Builds > Allow Telemetry

Microsoft has slightly changed some things so they may be worded differently. Such as Windows Defender is now called Microsoft Defender so older guides may not reflect that. Tamper protection needs to be also disabled.

Links & References

Disable Microsoft Defender Antivirus real-time protection permanently

First disable Tamper Protection in the Microsoft Defender settings itself. Then using Windows Powershell (admin) disable the real-time protection with the below cmdlet.

Set-MpPreference -DisableRealtimeMonitoring $true

Alternative method is using the Group Policy Editor.

Turning off real-time protection permanently even after restarting.

OPTION FIVETurn On or Off Real-time Protection for Microsoft Defender Antivirus | Tutorials
https://www.tenforums.com/tutorials/3569-turn-off-real-time-protection-microsoft-defender-antivirus.html

This link should also provide you with other useful things to switch off/on. Like disabling telemetry.

Microsoft has slightly changed some things so they may be worded differently. Such as Windows Defender is now called Microsoft Defender so older guides may not reflect that. Tamper protection needs to be also disabled.

Links & References