How to disable Refresh 2023 in Chrome through command line

173 Views Asked by At

I would love to disable the feature called Refresh 2023 in Chrome using command line arguments. This feature can be accessed in flags: chrome://flags/#chrome-refresh-2023

I tried --no-experiments argument. I tried all kind of forms of --disable-feature argument, going back to the source code of Chromium to sniff out the feature name to disable it.

Nothing worked. The only thing that works programatically is changing the state file of Chrome in AppData\Local\Google\Chrome\User Data\Local State by adding a value 3 entry to the dictionary:

"browser":{"enabled_labs_experiments":["chrome-refresh-2023@3"]}
0

There are 0 best solutions below