搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Change a default shortcut on Firefox for Windows 10

  • 4 个回答
  • 1 人有此问题
  • 16 次查看
  • 最后回复者为 cor-el

more options

Dear Firefox support.

Hi, I'd like to change a default shortcut. I'd like to use Ctrl + Shift + N to open a private browser window. The default shortcut is Ctrl + Shift + P, but in every other browser it is Ctrl + Shift + N, so I'd like that also in Firefox that shortcut would be Ctrl + Shift + N. Is there a way to change it?

Thanks for the support.

Emanuele

Dear Firefox support. Hi, I'd like to change a default shortcut. I'd like to use Ctrl + Shift + N to open a private browser window. The default shortcut is Ctrl + Shift + P, but in every other browser it is Ctrl + Shift + N, so I'd like that also in Firefox that shortcut would be Ctrl + Shift + N. Is there a way to change it? Thanks for the support. Emanuele

所有回复 (4)

more options

I dont know? Seems like pressing keys is more work than just clicking a mouse button.

Have you tried right clicking on the taskbar shortcut for opening private windows?

more options

Yes, of course I tried, but it is not what I want to do. To really work less you should never take your hands off the keyboard.

more options

You can possibly achieve this with code in an autoconfig.cfg file, but "Ctrl+Shift+N" is taken by Undo Closed Window and thus isn't available and you would have to remove this shortcut key as well.


// autoconfig.cfg must start with a comment line
 try {
  let {classes:Cc, interfaces:Ci, manager:Cm, utils:Cu} = Components;
  const {Services} = Cu.import('resource://gre/modules/Services.jsm');
  function ConfigJS() { Services.obs.addObserver(this, 'chrome-document-global-created', false); }
  ConfigJS.prototype = {
   observe: function (aSubject) { aSubject.addEventListener('DOMContentLoaded', this, {once: true}); },
   handleEvent: function (aEvent) {
    let document = aEvent.originalTarget;
    let window = document.defaultView;
    let location = window.location;
    if (/^(chrome:(?!\/\/(global\/content\/commonDialog|browser\/content\/webext-panels)\.x?html)|about:(?!blank))/i.test(location.href)) {
     if (window._gBrowser) {
      let myKeyChanges = [{id:'key_privatebrowsing',newkey_sc:'N'},{id:'key_undoCloseWindow',newkey_sc:'--'}];
      var i,mK,menuitem;
      for (i=0; mK=myKeyChanges[i]; i++){
       menuitem = window.document.getElementById(mK.id);
       if (menuitem) {
        if (mK.newlabel) menuitem.setAttribute('label', mK.newlabel);
        if (mK.newkey_ac) {
         if (mK.newkey_ac=='--') menuitem.removeAttribute('accesskey');
         else menuitem.setAttribute('accesskey', mK.newkey_ac);
        }
        if (mK.newkey_sc) {
         if (mK.newkey_sc=='--') {
          menuitem.removeAttribute('key');
          menuitem.removeAttribute('modifiers');
         }
         else menuitem.setAttribute('key', mK.newkey_sc);
        }
       }
      }
     }
    }
   }
  };
  if (!Services.appinfo.inSafeMode) { new ConfigJS(); }
 } catch(ex) {};