在 Mac 上关闭 Chrome 的双指滑动前进 / 后退,有两种方案:全局关闭(所有应用) 或 仅关闭 Chrome。
方法 1:全局关闭(所有浏览器 / 应用)
-
点击屏幕左上角 苹果菜单 → 系统设置
-
进入 触控板 → 更多手势
-
找到 在页面之间轻扫,取消勾选
方法 2:### 仅关闭 Chrome(推荐,不影响其他应用)
-
打开 终端(Launchpad → 其他 → 终端)
-
粘贴以下命令(触控板):
bash
运行
defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls -bool false -
若用 妙控鼠标,再加这条:
bash
运行
defaults write com.google.Chrome AppleEnableMouseSwipeNavigateWithScrolls -bool false -
完全退出 Chrome(Cmd+Q)再重新打开
恢复方法
-
全局:回到触控板设置,重新勾选 在页面之间轻扫
-
Chrome 专属(终端):
bash
运行
defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls -bool true defaults write com.google.Chrome AppleEnableMouseSwipeNavigateWithScrolls -bool true
重启 Chrome 生效。