搜索 | 用户支持

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

详细了解

Why can't I install url like "chrome://" on a new tab?

more options

If I install in the "settings - home, homepage - my url" on "chrome: //browser/content/places/places.xul", then it works when firefox starts up. But if I try to install the "new tab - home page", then the "new tab" does not go to "chrome: //browser/content/places/places.xul".

If I install in the "settings - home, homepage - my url" on "chrome: //browser/content/places/places.xul", then it works when firefox starts up. But if I try to install the "new tab - home page", then the "new tab" does not go to "chrome: //browser/content/places/places.xul".
已附加屏幕截图

所有回复 (4)

more options

Web extensions can't do this in current Firefox releases (bug reports mention about: and file: links, but I assume that chrome: doesn't work as well). An alternative could be to set the homepage and middle-click the toolbar Home buttom (you can drag this button to the Tab bar).

This is still possible directly via other ways. You can paste this code in the Browser Console to see this working.

var newTabURL = "chrome://browser/content/places/places.xul";
aboutNewTabService.newTabURL = newTabURL;

Set devtools.chrome.enabled to true on the about:config page to enable the command line or use the settings page (F1) of the developer tools.

more options

thank you everything is working!

more options

but after closing the browser, this var newTabURL = "chrome://browser/content/places/places.xul"; aboutNewTabService.newTabURL = newTabURL; disappears.

more options

zig-zag said

but after closing the browser, this var newTabURL = "chrome://browser/content/places/places.xul"; aboutNewTabService.newTabURL = newTabURL; disappears.

Yes, that little snippet of script makes a dynamic change to Firefox's behavior, but only for the current session. At the next startup, Firefox reads the saved settings as usual.

Some little bits of script can be run automatically at startup using an Autoconfig file, but over the past year, the things that file is allowed to do have been restricted, since they were abused by other software, so I don't know whether it can still make that change.