1

I need to keep using an older version of Chrome to access an old work VPN which requires Java applets and for some reason crashes after several minutes when launched from Safari. The latest versions of Chrome has Java applets disabled, so I need to download an old version of Chrome and disable the autoupdate. I know you can disable the updater interval, but can I disable it by blocking certain domains in /etc/hosts by pointing them to 127.0.0.1 or using Little Snitch to block connections?

Nic Cottrell
  • 1,747
  • 8
  • 25
  • 38

2 Answers2

2

From this link:

This works to stop Google Chrome from updating itself automatically in Mac OS X:

  • Launch the Terminal, found in /Applications/Utilities/

  • Enter the following defaults write command and hit return:

defaults write com.google.Keystone.Agent checkInterval 0

  • Exit out of Terminal and restart Google Chrome

Direct Google search here.

YMMV.

IconDaemon
  • 19,234
0

This method did not use a firewall, but is easy as possible.

  1. Open the Application folder in the finder
  2. Right-click on the Google Chrome app
  3. Select Show Packaged Content and open the Contents folder
  4. Open info.plist file with your favourite text editor
  5. Search for KSUpdateURL and rename the string value URL to something else (127.0.0.1)
BenRoe
  • 534