Chrome extension to add back "Ctrl + touch pad scroll" to zoom in and out.
Got to the extension in chrome web store and add it to your browser.
The default threshold used to determin if a wheel event should invoke a zoom. Or in other words how sensitiv the zoom behavior is.
This value worked for me, depending on your touchpad or preference you might need to increase/decrease this value.
This value specifies how much to change the current zoom level. It's an absolute percentage. If your current zoom level is 50% and you zoom in 1 step the new zoom level will be 60% (if step size is 10%)
This value defines the minimum delay between zoom events. During this delay new wheel events will be ignored.
This value worked for me, depending on your touchpad or preference you might need to increase/decrease this value.
This will simply change the wheel direction for zooming.
Normaly this extension uses the chrome tab zoom (browser zoom).
If you use chromes zoom, it remembers the zoom level on a per host name basis: chrome://settings/content/zoomLevels?search=zoom
If you disable this, the extesion will use document.body.style.zoom
instead, which chrome does not track.
It will also intercept "CTRL+0" (but not prevent the default behavior) and reset the zoom level to 100%
If enabled the extension will intercept ctrl +
and ctrl -
.
This is done because for example on the swiss keyboard layout chrome does not accept shift ctrl 1
which should be equivalent to ctrl +
as ctrl +
.
Unlike chrome if intercept is enabled the extension will check of the resulting key
instead of the actual key code
.
If you need to temporarily disable the zoom behavior, you can simply check Disabled. If set, the extension will no longer perform any zoom
If enabled a little ui will pop up to show the current non browser zoom. The popup also contains buttons to increase and decrease the zoom level, as well as reset the zoom level.
This value defines, for how long the pop up should be displayed after a zoom action.