Does anyone know how to disable Google Chrome for being automatic update itself, it cause my web application always change?
I have tried these methods:
If you are using Mac OS. Keep the version that you need and then following step help you stop updating chrome permanently.
To Disable auto update:-
Empty these directories:
~/Library/Google/GoogleSoftwareUpdate/
Then change the permissions on these folders named 'GoogleSoftwareUpdate' so that there's no owner and no read/write/execute permissions. In terminal:
cd /Library/Google/
sudo chown nobody:nogroup GoogleSoftwareUpdate
sudo chmod 000 GoogleSoftwareUpdate
cd ~/Library/Google/
sudo chown nobody:nogroup GoogleSoftwareUpdate
sudo chmod 000 GoogleSoftwareUpdate
Then do the same for the folder Google one level up.
cd /Library/
sudo chown nobody:nogroup Google
sudo chmod 000 Google
cd ~/Library/
sudo chown nobody:nogroup Google
sudo chmod 000 Google
Hope this help!