Este problema foi relatado nos fóruns do Google Chrome por um tempo agora. Para algumas pessoas, a desinstalação e a reinstalação do Chrome permitem que o Chrome seja desativado. Além disso, tente atualizar o Chrome porque você pode ter uma versão mais antiga do Chrome que ainda apresenta esse bug. Este bug é originalmente do Chromium por volta de maio de 2010 . Resposta já discutida em Pergunte ao Different, o Apple Stack Exchange . Eles recomendam você
Type
sudo killall Google\ Chrome
on the Terminal.If this does not work, do this:
pgrep -x "Google Chrome"
You will see a number, then typekill -9 numberhere
where numberhere is the number that the pgrep command returned.And to instatly delete the app, no matter if it is open or not, do:
sudo rm -rf /Applications/Google\ Chrome.app
. Then type your password.The reason you get a permission denied error is because you need root access do to this, just use sudo on the terminal for this.