Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

how can i change the firefox keyboard shortcuts?

  • 3 risposte
  • 1 ha questo problema
  • 3 visualizzazioni
  • Ultima risposta di Mamoon

more options

i can't for the life of me figure out where i need to go to change keyboard shortcuts. am i stupid or has this been purposely made hard to get to ?

i can't for the life of me figure out where i need to go to change keyboard shortcuts. am i stupid or has this been purposely made hard to get to ?

Tutte le risposte (4)

more options

Hey, You will have to use an extension to change the default keyboard shortcuts. https://support.mozilla.org/en-US/questions/1287036 https://addons.mozilla.org/en-US/firefox/addon/shortkeys/

more options

this extension seems to only allow adding new keyboard shortcuts. what if i want to disable a default one. specifically i want to disable Alt+Left from going back and Alt+Right from going forward. is this impossible with the current state of things ?

more options

Implement "about:shortcuts" showing all shortcuts and allowing the editing of shortcuts

If you're running Windows I'd suggest installing AutoHotkey. Then run the program, follow the instructions on how to create a script file, and place the following code in the file:

$!Left::

   ifWinActive, ahk_exe firefox.exe
   {
       return 
   } else {
       Send !Left
       return
   }

$!Right::

   ifWinActive, ahk_exe firefox.exe
   {
       return 
   } else {
       Send !Right
       return
   }


Then save the file, run it, and place it in the Windows Startup folder. Alt+Left and Alt+Right should then be disabled permanently for Firefox.

Modificato da kgersen il

more options

Hey, Posting some more support links to help you with this issue. Please go through the steps and let me know if the problem was resolved. https://support.mozilla.org/en-US/questions/1241294 https://support.mozilla.org/en-US/questions/987351#answer-537172