I use Chrome mode in --app on my local server. This works great and makes it look like a native application, although all of this is HTML. However, if a Mac user swipes two fingers to the left, Chrome goes back to the previous page, which works poorly with the interaction model in this application. So:
Can I disable this, possibly through a parameter, when starting Chrome?
I know that this function comes from OSX and can be disabled by changing the chrome system settings by running the following command:
defaults write com.google.Chrome.plist AppleEnableSwipeNavigateWithScrolls -bool FALSE
However, it will also affect users of other instances of Chrome that they may not like. Can I either turn this off for my instance (via a parameter), or is there a Javascript solution to REALLY prevent the reverse function (and not just fast forward)?
source share