Google Chrome reopens every time on quit. I can't quit it unless I close BTT

I can't seem to figure out why this is happening but I can only close Chrome if BTT is closed. Else, Chrome keeps reopening every time.

Any idea why this happens?

Most likely you have configured an apple script that does involve Chrome and is running constantly in BTT.

If an Apple Script does a "tell application xxx", it will launch the app if you don't check whether it is running first

The most performant way of checking whether an app is running is this:

tell application "BetterTouchTool"
	if is_app_running "Finder" then
                // only execute your script if the app is running
		return "running"
	else
		return "not running"
	end if
end tell
1 Like

I use an apple script which involves Chrome but I disable AquaTouch which fixed the problem. So I guess it was an AquaTouch bug