Unable to specify URL for new tab

Discussion of general topics about Mozilla Firefox
Post Reply
foxajay
Posts: 2
Joined: January 26th, 2018, 3:34 pm

Unable to specify URL for new tab

Post by foxajay »

It seems extension in version 57 for managing new tab does not allow file on computer.
It was possible in previous versions.
Silly that on home page I can point to that file on computer but not on new tab.
To keep it simple just add an option of using home page URl for new tab.
User avatar
DanRaisch
Moderator
Posts: 127233
Joined: September 23rd, 2004, 8:57 pm
Location: Somewhere on the right coast

Re: Unable to specify URL for new tab

Post by DanRaisch »

To keep it simple just add an option of using home page URl for new tab.
You're asking the wrong people to do that. This forum is not run by or formally associated with Mozilla. We're an independent user-helping-user community.
User avatar
Gingerbread Man
Posts: 7735
Joined: January 30th, 2007, 10:55 am

Re: Unable to specify URL for new tab

Post by Gingerbread Man »

It can be done with a userChrome.js script. Read the Usage section first if you don't already have that set up.
:arrow: https://luke-baker.github.io
Brummelchen
Posts: 4480
Joined: March 19th, 2005, 10:51 am

Re: Unable to specify URL for new tab

Post by Brummelchen »

the magic number is 51 and you are probably part of it :p
User avatar
dickvl
Posts: 54161
Joined: July 18th, 2005, 3:25 am

Re: Unable to specify URL for new tab

Post by dickvl »

^: the OP wants to use a local file for the new tab page.

Another possibility is to use mozilla.cfg.

Code: Select all

//
var newTabURL = "<URL>";
aboutNewTabService = Components.classes["@mozilla.org/browser/aboutnewtab-service;1"].getService(Components.interfaces.nsIAboutNewTabService);
aboutNewTabService.newTabURL = newTabURL;
https://developer.mozilla.org/en-US/Fir ... _deploymen
User avatar
GeraldB
Posts: 1109
Joined: February 2nd, 2004, 7:06 pm
Location: NO-VA

Re: Unable to specify URL for new tab

Post by GeraldB »

As an alternative, center-clicking the mouse on the "Home" icon brings up a new tab showing the home page. Unless that gets ruined also.
foxajay
Posts: 2
Joined: January 26th, 2018, 3:34 pm

Re: Unable to specify URL for new tab

Post by foxajay »

Center Clicking on "Home" did the trick. Thanks.
Post Reply