Disable zoom shortcuts on Opera
-
kaleidonkep99 last edited by
Hello, I have a very annoying problem on Opera.
Whenever I try to use the + or the - button on Facebook (Italian layout, I need these keys to do * and _), the page automatically zooms in and out.
How can I disable these shortcuts?
-
l33t4opera last edited by
Hi @kaleidonkep99, you can disable them as follows:
-
Start the Opera, and go to Opera's menu, select "About Opera", copy the path to the profile, and close the Opera,
-
Open Windows Explorer (WinKey+E), and paste the path into the address bar, find the "Preferences" file, and make its copy e.g. "Preferences-back" (in case, that you make a mistake in the syntax, you can overwrite the original file with the copy, to revert the changes), and then open the "Preferences" file in your text editor,
-
At the top of the file (in the 2nd line), after the 1st occurrence of the "{" sign, add the code as below:
"Keybindings": { "Basic": { "ZoomIn": [ "Ctrl+OemPlus", "Ctrl+Shift+OemPlus", "Shift+OemPlus", "Ctrl+Plus", "Plus" ], "ZoomOut": [ "Ctrl+OemMinus", "Ctrl+Minus", "Minus" ] }, "Settings": { "AdvancedEnabled": true } },
after you add the code, it should look as below:
{ "Keybindings": { "Basic": { "ZoomIn": [ "Ctrl+OemPlus", "Ctrl+Shift+OemPlus", "Shift+OemPlus", "Ctrl+Plus", "Plus" ], "ZoomOut": [ "Ctrl+OemMinus", "Ctrl+Minus", "Minus" ] }, "Settings": { "AdvancedEnabled": true } },
Slight notes:
-
if the sections as above already exist, then you should edit them, to be the same as above, and do not add new,
-
the value of the "AdvancedEnabled" can be "false", in case that you don't use advanced keyboard shortcuts.
Save the changes, close the file, launch the Opera, and see if this helps
-