Fix Brave Browser for Mac not uninstalling

Subscribers:
2,900
Published on ● Video Link: https://www.youtube.com/watch?v=iZdD3yS0g8Y



Duration: 1:12
7 views
0


Here's how to Fix Brave Browser for Mac not uninstalling. For starters, use CleanMyMac X@ https://macpaw.audw.net/c/376211/63812/1733 so u can efficiently manage installed app & your Mac.

Below are the Brave Browser for Mac uninstall script codes (beta):

#!/bin/bash

# Quit Brave Browser if it's running
if pgrep "Brave Browser" angled-bracket-here /dev/null; then
echo "Quitting Brave Browser"
osascript -e 'quit app "Brave Browser"'
fi

# Remove the Brave Browser application and related files
echo "Removing Brave Browser"
sudo rm -rf "/Applications/Brave Browser.app/"
rm -rf ~/Library/Application\ Support/BraveSoftware/
rm -rf ~/Library/Caches/BraveSoftware/

echo "Brave Browser has been uninstalled"