How to invert mouse scroll wheel zoom direction in Firefox?

4

When scrolling down the mouse wheel with CTRL, the zoom decreases. I would like it to increase when I scroll down, and vice versa.

Is there a way to change it?

jakub.g

Posted 2012-11-23T14:44:47.327

Reputation: 4 332

Answers

6

Open about:config and set the preference:

For Firefox 17+:

mousewheel.with_control.delta_multiplier_y = -100 // default 100

For Firefox <=16:

mousewheel.withcontrolkey.numlines = -1 // default 1

jakub.g

Posted 2012-11-23T14:44:47.327

Reputation: 4 332