Disable irritating chrome zoom when pressing ctrl key


I am in a habit of using gestures on my touchpad to scroll the webpages. Now as soon as a press Ctrl to get a new tab, My page zooms into 400%.

So here’s how to disable pinch zoom/ scroll zoom on just google chrome.

 

Download AutoHotKey from here:

http://www.autohotkey.com/

 

Once installed, import the following script:

 

#notrayicon
#singleinstance
#MaxHotkeysPerInterval 1500
#IfWinActive ahk_class Chrome_WidgetWin_1
^WheelDown::return
#IfWinActive ahk_class Chrome_WidgetWin_1
^WheelUp::return

 

 

 

Thats it! You’re done.