How to disable Google Chrome auto update?

后端 未结 30 1412
一生所求
一生所求 2020-11-28 01:31

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:

30条回答
  •  日久生厌
    2020-11-28 02:13

    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!

提交回复
热议问题