Mac OS上如何关闭chrome双指左右滑动前进和后退页面功能

0 阅读1分钟

在 Mac 上关闭 Chrome 的双指滑动前进 / 后退,有两种方案:全局关闭(所有应用)  或 仅关闭 Chrome

方法 1:全局关闭(所有浏览器 / 应用)

  1. 点击屏幕左上角 苹果菜单  → 系统设置

  2. 进入 触控板 → 更多手势

  3. 找到 在页面之间轻扫,取消勾选

    image

方法 2:### 仅关闭 Chrome(推荐,不影响其他应用)

  1. 打开 终端(Launchpad → 其他 → 终端)

  2. 粘贴以下命令(触控板):

    bash

    运行

    defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls -bool false
    
  3. 若用 妙控鼠标,再加这条:

    bash

    运行

    defaults write com.google.Chrome AppleEnableMouseSwipeNavigateWithScrolls -bool false
    
  4. 完全退出 Chrome(Cmd+Q)再重新打开

恢复方法

  • 全局:回到触控板设置,重新勾选 在页面之间轻扫

  • Chrome 专属(终端):

    bash

    运行

    defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls -bool true
    defaults write com.google.Chrome AppleEnableMouseSwipeNavigateWithScrolls -bool true
    

重启 Chrome 生效。