Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

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

Learn More

chrome:// URLs no longer work in Firefox 55, what has replaced them?

  • 4 个回答
  • 5 人有此问题
  • 1 次查看
  • 最后回复者为 tim3

more options

Up until now I've been using this URL to show my Firefox bookmarks as a page: chrome://browser/content/bookmarks/bookmarksPanel.xul

(see https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XUL/Tutorial/The_Chrome_URL)

I've been using it with the extension New Tab Override so that new tabs will show my bookmarks, instead of the default 'tiles'. The author of New Tab Override updated it for Firefox 55 by making it a WebExtension. The problem is that now that the chrome:// URLs seem to no longer work in FF 55 I need to find the new URL to display my bookmarks as a page?

Up until now I've been using this URL to show my Firefox bookmarks as a page: chrome://browser/content/bookmarks/bookmarksPanel.xul (see https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XUL/Tutorial/The_Chrome_URL) I've been using it with the extension New Tab Override so that new tabs will show my bookmarks, instead of the default 'tiles'. The author of New Tab Override updated it for Firefox 55 by making it a WebExtension. The problem is that now that the chrome:// URLs seem to no longer work in FF 55 I need to find the new URL to display my bookmarks as a page?

被采纳的解决方案

Sorry, but the New Tab Override extension has been updated to use the more restricted WebExtensions API for Firefox 57 compatibility and can no longer show a local page (a page whose address starts with file://) -- or apparently a chrome:// page -- in place of the built-in new tab page.

As a "two-click" workaround you can pin the local/chrome page in the first tile position on the built-in new tab page. See: Customize your Firefox New Tab page.

Or if you display the Bookmarks Toolbar you can bookmark your local page on the bar and Ctrl+click or middle-click the bookmark to launch it in a new tab.

Hopefully one of those will tide you over until someone comes up with a better way.

定位到答案原位置 👍 1

所有回复 (4)

more options

选择的解决方案

Sorry, but the New Tab Override extension has been updated to use the more restricted WebExtensions API for Firefox 57 compatibility and can no longer show a local page (a page whose address starts with file://) -- or apparently a chrome:// page -- in place of the built-in new tab page.

As a "two-click" workaround you can pin the local/chrome page in the first tile position on the built-in new tab page. See: Customize your Firefox New Tab page.

Or if you display the Bookmarks Toolbar you can bookmark your local page on the bar and Ctrl+click or middle-click the bookmark to launch it in a new tab.

Hopefully one of those will tide you over until someone comes up with a better way.

more options

Thanks, it's a shame it's not really possible to have this functionality in the newer Firefox versions. Hopefully some day they'll add it back in

more options

This still works for me with a mozilla.cfg auto configuration file to set the new tab page.

//
var newTabURL = "chrome://browser/content/bookmarks/bookmarksPanel.xul";
Cu.import("resource:///modules/NewTabURL.jsm");
NewTabURL.override(newTabURL);

You can use the mozilla.cfg file in the Firefox program folder to set or lock preferences and run privileged JavaScript code.

The mozilla.cfg file needs to be in the main Firefox program folder.

This requires a local-settings.js file in the "defaults/pref" folder where the channel-prefs.js file is located that specifies to use mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0);

The mozilla.cfg file and possibly local-settings.js need to start with a comment line (//).

See Configuration:

See also:

more options

Thanks, I'll give that a try