Repository: MulesGaming/brave-debullshitinator Branch: main Commit: 7ebd2d1b109e Files: 4 Total size: 3.4 KB Directory structure: gitextract_1cy0r2p9/ ├── README.md ├── brave-bullshitinator-linux-install.sh ├── brave_debullshitinator-policies.reg └── policies.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: README.md ================================================ # brave-debullshitinator Removes unnecessary bloat from Brave Browser. ------- # What is disabled? The following items are disabled by appling brave debullshitinator: * Brave rewards & Wallet * Brave VPN * Brave AI/Leo (some people may like Leo, in which case you can reenable it following the [customization guide](https://github.com/MulesGaming/brave-debullshitinator/wiki/Customization)) * Changes Brave's ad-ridden homepage to [search.brave.com](https://search.brave.com) (*Only available on linux*) * Disables the password manager (I recommend using a third party password manager such as [Bitwarden](https://bitwarden.com) or [Proton Pass](https://proton.me/pass) that isn't tied to Brave sync or any one browser.) * Disabled Brave's Tor integration as it is insecure. ------- # How does it work? Brave debullshitinator uses [group policies](https://support.brave.com/hc/en-us/articles/360039248271-Group-Policy) typically used to manage organisations browsers to force disable fetures. Group policies are the only way to completly hide these fetures from settings and context menus. ------- # Installation Windows: https://github.com/MulesGaming/brave-debullshitinator/wiki/Installation-instructions#windows Note: I recommend using Slim Brace if your on windows as it does a similar thing as [brave debullshitinator](https://github.com/ltx0101/SlimBrave) but provides more customization via a gui. MacOS: We currently do not officaly support MacOS, however testers for it would be appreciated. Please see [pull request #6](https://github.com/MulesGaming/brave-debullshitinator/pull/6) for more information if you are interested in bringing this tool to Mac. Linux: https://github.com/MulesGaming/brave-debullshitinator/wiki/Installation-instructions#linux ------- # Customizing [Please see the wiki for instructions on how to change modifications.](https://github.com/MulesGaming/brave-debullshitinator/wiki/Customization) # Additional Resources You can check out similar tools [here](https://github.com/MulesGaming/brave-debullshitinator/wiki/Additional-Resources#other-tools) and see domains to blacklist with your dns [here](https://github.com/MulesGaming/brave-debullshitinator/wiki/Additional-Resources#brave-telemetrytracking-dns-blacklists) ================================================ FILE: brave-bullshitinator-linux-install.sh ================================================ # Start echo "Starting Brave debullshitinator installer" echo "Brave debullshitinator is made by Mules Gaming. Find it here: https://github.com/MulesGaming/brave-debullshitinator" # Make dir sudo mkdir /etc/brave/policies/managed -p # Download file wget https://github.com/MulesGaming/brave-debullshitinator/releases/download/1.0.4/brave_debullshitinator-policies.json sudo cp brave_debullshitinator-policies.json /etc/brave/policies/managed rm brave_debullshitinator-policies.json # End echo "Brave debullshitinator installed" ================================================ FILE: brave_debullshitinator-policies.reg ================================================ Windows Registry Editor Version 5.00 ; brave version: 127.1.69.73 [HKEY_LOCAL_MACHINE\Software\Policies\BraveSoftware\Brave] "BraveRewardsDisabled"=dword:00000001 "BraveWalletDisabled"=dword:00000001 "BraveVPNDisabled"=dword:00000001 "BraveAIChatEnabled"=dword:00000000 "PasswordManagerEnabled"=dword:00000000 "TorDisabled"=dword:00000001 "DnsOverHttpsMode"="automatic" ================================================ FILE: policies.json ================================================ { "BraveRewardsDisabled": true, "BraveWalletDisabled": true, "BraveVPNDisabled": 1, "BraveAIChatEnabled": false, "NewTabPageLocation": "https://search.brave.com", "TorDisabled": true, "PasswordManagerEnabled": false, "DnsOverHttpsMode": "automatic" }