"Ctrl+F5 to go left a tab, and Ctrl+F6 to go right a tab"
Hi @hopk1ns, it requires a little effort, but you can do this 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, and paste the path into the address bar, find the "Preferences" file, and make its copy (if you make a mistake in the syntax, you can overwrite the original file with the copy, to easy revert the changes),
Open the "Preferences" file in your text editor, and after the 1st line, which contains "{" sign (in the 2nd line), add the code as below:
"Keybindings": {
"Basic": {
"ForceReload": [ "Shift+F5" ],
"SwitchToLeftTab": [ "Ctrl+F5" ],
"SwitchToRightTab": [ "Ctrl+F6" ]
},
"Settings": {
"AdvancedEnabled": true
}
},
after that, it should look as below:
{
"Keybindings": {
"Basic": {
"ForceReload": [ "Shift+F5" ],
"SwitchToLeftTab": [ "Ctrl+F5" ],
"SwitchToRightTab": [ "Ctrl+F6" ]
},
"Settings": {
"AdvancedEnabled": true
}
},
Slight notes:
if the sections as above already exist, then do not add new, but only edit them, adding the above three lines, which contain the keybindings,
if you don't use advanced keyboard shortcuts, then the value of the "AdvancedEnabled" can be "false".
Save the changes, close the file, launch the Opera, and see if this helps 😉