update readme
This commit is contained in:
38
README.md
38
README.md
@@ -3,6 +3,7 @@
|
|||||||
## Quick: Manual intervention
|
## Quick: Manual intervention
|
||||||
|
|
||||||
When opening the browser using the backup, these are the only need actions:
|
When opening the browser using the backup, these are the only need actions:
|
||||||
|
|
||||||
- brave://settings/getStarted
|
- brave://settings/getStarted
|
||||||
- Get started > On startup > Open the New Tab Page
|
- Get started > On startup > Open the New Tab Page
|
||||||
- brave://settings/search
|
- brave://settings/search
|
||||||
@@ -13,16 +14,19 @@ When opening the browser using the backup, these are the only need actions:
|
|||||||
Goal: Backup Brave Settings while disabling unnecessary features.
|
Goal: Backup Brave Settings while disabling unnecessary features.
|
||||||
|
|
||||||
Resources at:
|
Resources at:
|
||||||
|
|
||||||
- Brave: https://support.brave.app/hc/en-us/articles/360039248271-Group-Policy
|
- Brave: https://support.brave.app/hc/en-us/articles/360039248271-Group-Policy
|
||||||
- Google: https://chromeenterprise.google/intl/en_us/policies/
|
- Google: https://chromeenterprise.google/intl/en_us/policies/
|
||||||
|
|
||||||
### Using Group-Based Policies (GBP)
|
### Using Group-Based Policies (GBP)
|
||||||
|
|
||||||
There are two groups:
|
There are two groups:
|
||||||
- Mandatory (system-wide) <- use this one
|
|
||||||
|
- Mandatory (system-wide) <- use this one
|
||||||
- Stored at `/Library/Managed Preferences/com.brave.Browser.plist`
|
- Stored at `/Library/Managed Preferences/com.brave.Browser.plist`
|
||||||
- It is an editable file. This tool can be used too `PlistBuddy`
|
- It is an editable file. This tool can be used too `PlistBuddy`
|
||||||
- Commands:
|
- Commands:
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo mkdir -p "/Library/Managed Preferences"
|
sudo mkdir -p "/Library/Managed Preferences"
|
||||||
sudo chown root:wheel "/Library/Managed Preferences"
|
sudo chown root:wheel "/Library/Managed Preferences"
|
||||||
@@ -31,7 +35,8 @@ There are two groups:
|
|||||||
# Run this see the effect
|
# Run this see the effect
|
||||||
sudo killall cfprefsd
|
sudo killall cfprefsd
|
||||||
```
|
```
|
||||||
- Recommended (user-level)
|
|
||||||
|
- Recommended (user-level)
|
||||||
- Stored at: `~/Library/Preferences/com.brave.Browser.plist`
|
- Stored at: `~/Library/Preferences/com.brave.Browser.plist`
|
||||||
- It is a binary and can be used via:
|
- It is a binary and can be used via:
|
||||||
- `defaults read com.brave.Browser`
|
- `defaults read com.brave.Browser`
|
||||||
@@ -47,11 +52,13 @@ Because of that, we have to rely on preferences too.
|
|||||||
This method is not recommened neither is documented; however, there is no other alternative.
|
This method is not recommened neither is documented; however, there is no other alternative.
|
||||||
|
|
||||||
Whenever the browser is opened for the first time, this dir is created and populated:
|
Whenever the browser is opened for the first time, this dir is created and populated:
|
||||||
|
|
||||||
- `~/Library/Application Support/BraveSoftware/Brave-Browser`
|
- `~/Library/Application Support/BraveSoftware/Brave-Browser`
|
||||||
|
|
||||||
Note: For testing purposes, after everything is backed up, feel free to completely delete it.
|
Note: For testing purposes, after everything is backed up, feel free to completely delete it.
|
||||||
|
|
||||||
Inside, there are four main files:
|
Inside, there are four main files:
|
||||||
|
|
||||||
- `Brave-Browser/First Run` (empty file used as flag to skip "Welcome page")
|
- `Brave-Browser/First Run` (empty file used as flag to skip "Welcome page")
|
||||||
- `Brave-Browser/Local State`
|
- `Brave-Browser/Local State`
|
||||||
- `Brave-Browser/<Default_or_Profile>/Preferences`
|
- `Brave-Browser/<Default_or_Profile>/Preferences`
|
||||||
@@ -65,6 +72,7 @@ These hashes change based on the machine, so be aware.
|
|||||||
## How does the backup work?
|
## How does the backup work?
|
||||||
|
|
||||||
There are a few files:
|
There are a few files:
|
||||||
|
|
||||||
```
|
```
|
||||||
.
|
.
|
||||||
├── _assets All settings.
|
├── _assets All settings.
|
||||||
@@ -88,6 +96,7 @@ There are a few files:
|
|||||||
```
|
```
|
||||||
|
|
||||||
First, make sure to delete these files:
|
First, make sure to delete these files:
|
||||||
|
|
||||||
```
|
```
|
||||||
rm -rf ./assets
|
rm -rf ./assets
|
||||||
rm -rf '~/Library/Application Support/BraveSoftware/Brave-Browser'
|
rm -rf '~/Library/Application Support/BraveSoftware/Brave-Browser'
|
||||||
@@ -140,23 +149,28 @@ following the structure `./brave_debug.sh <command> <checkpoint_name>`.
|
|||||||
## All settings mapped
|
## All settings mapped
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
Brave 1.83.118 (Official Build) (arm64)
|
Brave 1.83.118 (Official Build) (arm64)
|
||||||
Chromium: 141.0.7390.108
|
Chromium: 141.0.7390.108
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
### Get started
|
### Get started
|
||||||
|
|
||||||
- On startup >> "Open the New Tag page"
|
- On startup >> "Open the New Tag page"
|
||||||
- [Secure Preferences]:session.restore_on_startup
|
- (Secure Preferences): session.restore_on_startup
|
||||||
- New tab page shows >> "Blank page"
|
- New tab page shows >> "Blank page"
|
||||||
- brave.new_tab_page.shows_options
|
- brave.new_tab_page.shows_options
|
||||||
|
|
||||||
### Appearance
|
### Appearance
|
||||||
|
|
||||||
- Show tab groups in bookmarks >> OFF
|
- Show tab groups in bookmarks >> OFF
|
||||||
- bookmark_bar.show_tab_groups
|
- bookmark_bar.show_tab_groups
|
||||||
- Automatically pin new tab groups created on any device to the bookmarks >> OFF
|
- Automatically pin new tab groups created on any device to the bookmarks >> OFF
|
||||||
- auto_pin_new_tab_groups
|
- auto_pin_new_tab_groups
|
||||||
|
|
||||||
### Shields
|
### Shields
|
||||||
|
|
||||||
- Show the number of blocked items on the Shields icon >> OFF
|
- Show the number of blocked items on the Shields icon >> OFF
|
||||||
- brave.shields.stats_badge_visible
|
- brave.shields.stats_badge_visible
|
||||||
- Store contact information for future broken site reports >> OFF
|
- Store contact information for future broken site reports >> OFF
|
||||||
@@ -164,37 +178,43 @@ Chromium: 141.0.7390.108
|
|||||||
- brave.webcompat.report.enable_save_contact_info: false
|
- brave.webcompat.report.enable_save_contact_info: false
|
||||||
|
|
||||||
### Privacy and security
|
### Privacy and security
|
||||||
|
|
||||||
- Only resolve .onion addresses in Tor windows >> OFF
|
- Only resolve .onion addresses in Tor windows >> OFF
|
||||||
- tor.onion_only_in_tor_windows
|
- tor.onion_only_in_tor_windows
|
||||||
- Allow privacy-preserving product analytics (P3A) >> OFF
|
- Allow privacy-preserving product analytics (P3A) >> OFF
|
||||||
- [Local State]:brave.p3a.enabled
|
- (Local State): brave.p3a.enabled
|
||||||
- Automatically send diagnostic reports >> OFF
|
- Automatically send diagnostic reports >> OFF
|
||||||
- [Local State]:brave.user_experience_metrics.reporting_enabled
|
- (Local State): brave.user_experience_metrics.reporting_enabled
|
||||||
|
|
||||||
### Search engine
|
### Search engine
|
||||||
|
|
||||||
- Improve search suggestions >> OFF
|
- Improve search suggestions >> OFF
|
||||||
- search.suggest_enabled
|
- search.suggest_enabled
|
||||||
|
|
||||||
### Extensions
|
### Extensions
|
||||||
|
|
||||||
- Media Router >> OFF
|
- Media Router >> OFF
|
||||||
- media_router.enable_media_router
|
- media_router.enable_media_router
|
||||||
- Widevine >> ON
|
- Widevine >> ON
|
||||||
- brave.widevine_opted_in
|
- brave.widevine_opted_in
|
||||||
|
|
||||||
### Autofill and passwords
|
### Autofill and passwords
|
||||||
|
|
||||||
- (Passwords.Settings) Sign in automatically >> OFF
|
- (Passwords.Settings) Sign in automatically >> OFF
|
||||||
- credentials_enable_autosignin
|
- credentials_enable_autosignin
|
||||||
- Allow auto-fill in private windows >> OFF
|
- Allow auto-fill in private windows >> OFF
|
||||||
- brave.autofill_private_windows
|
- brave.autofill_private_windows
|
||||||
|
|
||||||
### Languages
|
### Languages
|
||||||
|
|
||||||
- Websites in your languages >> "en"
|
- Websites in your languages >> "en"
|
||||||
- intl.accept_languages
|
- intl.accept_languages
|
||||||
- intl.selected_languages
|
- intl.selected_languages
|
||||||
|
|
||||||
### System
|
### System
|
||||||
- Memory Saver >> ON
|
|
||||||
- [Local State]:performance_tuning.high_efficiency_mode
|
- Memory Saver >> ON
|
||||||
- Energy Saver >> OFF
|
- (Local State): performance_tuning.high_efficiency_mode
|
||||||
- [Local State]:performance_tuning.battery_saver_mode
|
- Energy Saver >> OFF
|
||||||
|
- (Local State): performance_tuning.battery_saver_mode
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user