ابحث في الدعم

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

UserChrome script no longer working

  • 1 (رد واحد)
  • 1 has this problem
  • 12 views
  • آخر ردّ كتبه cor-el

more options

Have been using a script (.uc.js) in my profile/chrome folder to enable new-tab homepages via local files. After updating firefox ( 68.0b6, but I believe it appeared on b5) this functionality is gone. Instead it simply loads about:blank, seemingly showing that the script is not running at all.

Edit: upon further searching this seems to be to a change in Firefox 68 as a whole. Is there absolutely any way to regain this functionality?

Have been using a script (.uc.js) in my profile/chrome folder to enable new-tab homepages via local files. After updating firefox ( 68.0b6, but I believe it appeared on b5) this functionality is gone. Instead it simply loads about:blank, seemingly showing that the script is not running at all. Edit: upon further searching this seems to be to a change in Firefox 68 as a whole. Is there absolutely any way to regain this functionality?

Modified by qik7

All Replies (1)

more options

You can possibly set the new tab page via an autoconfig.cfg file.

This file is normally run in a sandbox that wouldn't allow this special code unless in ESR.

autoconfig.js in the "defaults\pref" folder.

//
pref("general.config.filename", "autoconfig.cfg");
pref("general.config.obscure_value", 0);
pref("general.config.sandbox_enabled", false);

autoconfig in the main Firefox program folder:

// first line is a comment
var {classes:Cc,interfaces:Ci,utils:Cu} = Components;

var newTabURL = "about:about"; // set new tab page
aboutNewTabService = Cc["@mozilla.org/browser/aboutnewtab-service;1"].getService(Ci.nsIAboutNewTabService);
aboutNewTabService.newTabURL = newTabURL;

Modified by cor-el