搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

How to focus content instead of address bar when (custom) Home page is opened?

  • 無回覆
  • 0 有這個問題
  • 13 次檢視
more options

Hi.

Similar to this question: https://support.mozilla.org/ln/questions/1291938

I would like to know how to customize "autoconfig.js" or "firefox.cfg" so that the home page is focused instead of the address bar when I open Firefox.

I the linked question, the following solutions works fine for focus content on New Tab:

    Services.obs.addObserver((event) => {
      window = BrowserWindowTracker.getTopWindow();
      window.gBrowser.selectedBrowser.focus();
    }, "browser-open-newtab-start");
  } catch(e) { Cu.reportError(e); }

It works fine, but I can't make it work for the Homage page when it's configured to open a local file.

I tried to bind the "window.gBrowser.selectedBrowser.focus();" action on the "browser-open-homepage-start" event but it has not effect.

Thanks.

Hi. Similar to this question: https://support.mozilla.org/ln/questions/1291938 I would like to know how to customize "autoconfig.js" or "firefox.cfg" so that the home page is focused instead of the address bar when I open Firefox. I the linked question, the following solutions works fine for focus content on New Tab: Services.obs.addObserver((event) => { window = BrowserWindowTracker.getTopWindow(); window.gBrowser.selectedBrowser.focus(); }, "browser-open-newtab-start"); } catch(e) { Cu.reportError(e); } It works fine, but I can't make it work for the Homage page when it's configured to open a local file. I tried to bind the "window.gBrowser.selectedBrowser.focus();" action on the "browser-open-homepage-start" event but it has not effect. Thanks.

如果您還沒有帳號,您必須先登入帳號 來回覆文章。還沒有帳號的話,只能發問新問題