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

Mozilla Firefox - Manage Bookmarks - Default Folder

  • 1 odpoveď
  • 0 má tento problém
  • 15 zobrazení
  • Posledná odpoveď od cor-el

more options

Using Firefox version 117.0.1 (64bit). When I click "Bookmarks / Manage Bookmarks, the listing defaults to the "Other Bookmarks" folder. I would like it to default to the "Bookmarks Menu" folder. How do I make it do that? Note: The same name subject that I submitted in 2022 has been archived, and the solution that worked so well in 2022 no longer works. Help!!

Using Firefox version 117.0.1 (64bit). When I click "Bookmarks / Manage Bookmarks, the listing defaults to the "Other Bookmarks" folder. I would like it to default to the "Bookmarks Menu" folder. How do I make it do that? Note: The same name subject that I submitted in 2022 has been archived, and the solution that worked so well in 2022 no longer works. Help!!

Všetky odpovede (1)

more options

In 117.0, Services.jsm is no longer supported (Services is now a global variable) and you need to remove this line.

const {Services} = Cu.import('resource://gre/modules/Services.jsm');

Use this instead:

var Services = globalThis.Services || ChromeUtils.import("resource://gre/modules/Services.jsm").Services;

I've edited the earlier thread to fix this.