- To disable crash notifications via script, you can use
1 | ( Get-Content "$env:USERPROFILE\AppData\Local\Google\Chrome\User Data\Default\Preferences" ).replace( '"exit_type":"Crashed"' , '"exit_type":"Normal"' ) | Set-Content "$env:USERPROFILE\AppData\Local\Google\Chrome\User Data\Default\Preferences" |
- To disable Translate notification you can use
1 |
0 Comments