20

Is there a way to disable/lock the mouse/touchpad zoom in the Chrome browser? I find myself accidentally triggering ctrl-wheel or touchpad-two-finger far more often than do intentionally.

As an afterwards bandaid fix, Ctrl-0 will quickly restore zoom to 100%.

Wulf Solter
  • 324
  • 1
  • 4
  • 9
  • This is a [bug in Chrome](https://bugs.chromium.org/p/chromium/issues/detail?id=253697). Please star it. – Dan Dascalescu Oct 24 '17 at 17:20
  • --disable-pinch works for pinch-zooms, but does not fix ctrl-wheel resizing. (See https://stackoverflow.com/questions/22999829/disable-chrome-pinch-zoom-for-use-in-kiosk) – Toybuilder May 23 '21 at 11:09

4 Answers4

10

For a quick and dirty solution I found @ http://productforums.google.com/forum/#!category-topic/chrome/discuss-chrome/-rtDLZmN9bk

Followed rd2020's comment for AutoHotkey (as I am already running it for other things)

Downloaded AutoHotKey software In the AutoHotkey.ahk file, added these to do nothing for Cntrl+MouseWheelScrolling

#IfWinActive ahk_class Chrome_WidgetWin_1
{
    ^WheelDown::return 
    ^WheelUp::return
    #MaxHotkeysPerInterval 1000
}
Jay
  • 101
  • 1
  • 3
2

There is an extension that can prevent it.

Just make sure to

NoMouseWheelZoom

Installation Instructions
1. Install the extension
2. Go to extension settings. Make sure that "allow access to file url's" is checked
3. Refresh Your tabs

desgua
  • 103
  • 9
0

Does

<meta content='True' name='HandheldFriendly' />
<meta content='width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;' name='viewport' />

not work for you?

nate
  • 9
  • 1
-1

However this is not possible yet on chrome but you can use an extension called zoom lock.

For windows there is a solution on Google product forum open the - controlpanel hardware settings mouse device settings, and then search for the setting were you can disabe the pinch zoom.

Also see this discussion.

avirk
  • 15,689
  • 16
  • 59
  • 104
  • 1
    Thanks for googling it, but Zoom Lock does NOT lock the zoom to a set level, it allows you to predetermine zoom levels for your favourite sites. Nor does disabling the shortcut with Shortcut Manager. Disabling pinchzoom for the whole system is a "workaround", not a solution, and eliminates a core functionality that is very useful in many other scenarios. – Wulf Solter May 25 '12 at 22:20
  • 1
    @WulfSolter Here is an alternative extension "Zoom Block", which actually does prevent zoom modifications (until re-enabled for a specific tab): https://chrome.google.com/webstore/detail/zoom-block/jmomepcgehgfoimapeoinphcloinjfpb – Venryx Mar 07 '20 at 01:58