Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

UserChrome script no longer working

  • 1 odpoveď
  • 1 má tento problém
  • 5 zobrazení
  • Posledná odpoveď od 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?

Upravil(a) qik7 dňa

Všetky odpovede (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;

Upravil(a) cor-el dňa