How do I uninstall Google Chrome *completely* from my Mac?

28

15

I have 2 iMacs and just installed OS X Lion (clean install) on one of them (let's call it iMac A). Did a time machine backup and restored that backup to my other iMac (B) to avoid installing twice. Everything works perfectly except that Google Chrome is extremely slow on iMac B (where the time machine backup was restored to). Opening a new tab is slow, opening a web page is slow etc. Safari on B is fast and works like on A, so it's just on B that Chrome is slow (and Chrome is my preferred browser, so I'd like to get it up to speed).

To solve the problem on B, I've tried uninstalling Chrome by dragging it to the Trashcan and emptying it. Then re-installg Chrome. But all my settings, extensions etc. are still there and it's just as slow as before.

Downloaded AppCleaner and did an uninstall with that, but still, when I re-install Chrome I have all my extensions etc. and it is as slow as before the re-install.

Does anyone know how to completely uninstall my Google Chrome browser so I can do a fresh install of it?

rassom

Posted 2011-08-02T17:26:55.463

Reputation: 593

Answers

16

Delete this:

user>library>application support>google>chrome .. just delete the chrome folder since I think its the place where they keep the settings.

Source

soandos

Posted 2011-08-02T17:26:55.463

Reputation: 22 744

This worked! Great post!!! – Daniel – 2015-04-30T21:08:24.387

I think it means to uninstall, then remove the folder, then re-install. – soandos – 2011-08-02T17:31:16.067

Thought I'd tried that but just tried and it worked. Thanks :-) PS. SU wants me to wait 7 mins before I can accept the answer, so hold on, please - and thanks again :) – rassom – 2011-08-02T17:34:09.603

Not a problem :). It would also be appreciated if you would upvote it once you have enough rep. – soandos – 2011-08-02T17:35:44.547

Will do. You should think they'd transfer rep from Stack Overflow (where I have enough) but it seems these sites are treated separately with regards to reputation. PS. Deleting the directory and re-installing didn't solve my problem with it being slow. Any ideas why? – rassom – 2011-08-02T17:42:23.510

Ask another question, don't know off the top of my head. If you have enough rep, when you get an account on a new SE site, you start with 101. – soandos – 2011-08-02T17:47:38.587

Guess I don't have enough then :) OK; will ask another question. Thanks :) – rassom – 2011-08-02T17:48:14.437

43

Here's a shell script that removes all files I could find:

rm -r /Applications/Google\ Chrome.app/
rm -r ~/Library/Application\ Support/Google/Chrome/
rm ~/Library/Application\ Support/CrashReporter/Google\ Chrome*
rm ~/Library/Preferences/com.google.Chrome*
rm ~/Library/Preferences/Google\ Chrome*
rm -r ~/Library/Caches/com.google.Chrome*
rm -r ~/Library/Saved\ Application\ State/com.google.Chrome.savedState/
rm ~/Library/Google/GoogleSoftwareUpdate/Actives/com.google.Chrome
rm ~/Library/Google/Google\ Chrome*
rm -r ~/Library/Speech/Speakable\ Items/Application\ Speakable\ Items/Google\ Chrome/

AppZapper and App Cleaner didn't find the application support folder:

Lri

Posted 2011-08-02T17:26:55.463

Reputation: 34 501

Also: ~/Library/LaunchAgents/com.google.keystone.agent.plist, ~/Library/Preferences/com.google.Keystone.Agent.plist, ~/Library/Caches/com.google.Keystone*, ~/Library/Caches/com.google.SoftwareUpdate, ~/Library/Application Support/Google/RLZ – user2067021 – 2017-04-28T00:15:21.087

+1 This is the answer you want if you're trying to COMPLETELY remove Chrome. Was having some weird rendering issues, but reinstalling from scratch appears to have resolved it – Workman – 2012-08-30T17:34:38.403

Thanks for pointing out AppZapper and AppCleaner. For those that see this, AppCleaner did a much better job of finding other files that should be removed and I added them to the list above. – dino – 2012-12-28T11:42:20.423

+1. I also found ~/Library/Google/Google\ Chrome\ Brand.plist. – JMD – 2013-05-17T17:17:33.653

1

In addition to user495470's comment, do rm -rf ~/Applications/Chrome\ Apps, where plugins ("apps") are stored by the browser.

kook

Posted 2011-08-02T17:26:55.463

Reputation: 11

1

Try this

  1. At the bottom of your computer screen, in your Dock, right-click Chrome.
  2. Select Quit.
  3. Open Finder.
  4. Go to the folder containing the Google Chrome application on your computer.
    • Tip: It may be in your Applications folder. If not, go to File and then Find, and search for "Google Chrome."
  5. Drag Google Chrome to the Trash.
  6. Optional: Delete your profile information, like bookmarks and history:

    • At the top of the screen, click Go and then Go to Folder.
    • Enter ~/Library/Application Support/Google/Chrome.
    • Click Go.
    • Select all the folders, and drag them to the Trash.

Source from official docs: https://support.google.com/chrome/answer/95319?co=GENIE.Platform%3DDesktop&hl=en

Sibiraj

Posted 2011-08-02T17:26:55.463

Reputation: 111