Lock/disable the zoom on Chrome Browser [duplicate]

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%.

2

4 Answers

For a quick and dirty solution I found @

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
}
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

1

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?

4

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.

2

You Might Also Like