After last Firefox update, bookmark bar has no items
Bookmark bar has no items in it
Bookmark bar has no items in it
The help has told me to press the 3 lines and go from help to troubleshooting, there is only the help option which does not lead to troubleshooting so i am unable to go a… (read more)
The help has told me to press the 3 lines and go from help to troubleshooting, there is only the help option which does not lead to troubleshooting so i am unable to go any further and bookmarks continue to be saved by default in travel which i cannot alter to the correct folder
When I click on the star icon in the address bar the star icon is filled in, and existing bookmarks show with the filled-in star icon. But I no longer get a dropdown wher… (read more)
When I click on the star icon in the address bar the star icon is filled in, and existing bookmarks show with the filled-in star icon. But I no longer get a dropdown where I can edit, tag, or delete an existing bookmark, and URLs I click on don't show up in Recently Bookmarked so they haven't been added.
The places.sqlite file in my profile is not read-only, and I restarted Firefox (stupidly, before I took a screenshot of the pinned shortcuts on my new tabs page) and that made no difference.
Thanks in advance for any help!
Hi, I searched the web for deleting the item "Weitere Lesezeichen" in the sidebar. I found only solutions for the firefox 85. In Firefox 85 should be a field for hiding t… (read more)
Hi,
I searched the web for deleting the item "Weitere Lesezeichen" in the sidebar. I found only solutions for the firefox 85. In Firefox 85 should be a field for hiding this. Although in Firefox 150 it can`t be hided or deleted. I don`t need and I don`t want this "Weitere Lesezeichen". Any solutions?
Oh this is too much! Do I need to go back to Google Chrome?
why did you destroy the existing bookmark structure and replace it with something that makes no sense. I have no idea from where you obtained the url's for the stuff tha… (read more)
why did you destroy the existing bookmark structure and replace it with something that makes no sense. I have no idea from where you obtained the url's for the stuff that's in bookmark's now. I also do not look forward to having to re-create all of the bookmarks I had in place. I won't be doing that on Mozilla! R Crider
I have over 10,000 bookmarks in my bookmark library synced across my devices and this is invaluable for me to navigate the content that I need on the laptops that I use, … (read more)
I have over 10,000 bookmarks in my bookmark library synced across my devices and this is invaluable for me to navigate the content that I need on the laptops that I use, but I can't use these tags that are critical for my search on Firefox Android. The feature simply doesn't exist yet on Android and this has been the case for quite a few years now.
I see no bookmarks when I open Firefox browser
I have been with Mozilla since Netscape 1. Recently, I have been unable to add or delete a bookmark or folder. A number of previous bookmarks have lost their icons and t… (read more)
I have been with Mozilla since Netscape 1. Recently, I have been unable to add or delete a bookmark or folder. A number of previous bookmarks have lost their icons and their content. The Bookmark "Star" turns blue, indicating that it has been bookmarked. When I look for it in the designated folder it is not there. I try to edit garbled bookmark URLs by substituting the new URL - does not work. There are a number of folders for categories of bookmarks and I cannot delete them. What can be done?
在从Google Play下载的最新版安卓Firefox应用程序上,书签里排序规则有一个为自定义排序。然而当我选择该方式后,尝试了惯用的长按操作,但不能调整顺序。请问我该怎么自定义书签的顺序?请告诉我正确的操作方法。如果这是程序bug引起,请修复完善该功能。
When can I finally sort my bookmarks?
I use the current version of Firefox on Ubuntu 22.04 Linux. When I scroll down past the individual bookmarks at the end of the menu, the folder names start repeating, alo… (read more)
I use the current version of Firefox on Ubuntu 22.04 Linux. When I scroll down past the individual bookmarks at the end of the menu, the folder names start repeating, along with the bookmarks inside them. I have three or four sets of bookmarks and would like to have only one. How can I delete all the bookmark folders below a certain point? By the way, when I install a new, different version of the operating system and sign in Sync restores all the bookmarks.
Book marks are no longer available. Win 11.
I am unable to bookmark anything. Some suggestions are to open a new table then type about: profile and then hit restart. When I do that DuckDuck then searches profile. … (read more)
I am unable to bookmark anything. Some suggestions are to open a new table then type about: profile and then hit restart. When I do that DuckDuck then searches profile.
I've been having this problem for about 10 years. It was raised in this thread but never solved. When I launch Firefox, several recent bookmarks that had been at the bott… (read more)
I've been having this problem for about 10 years. It was raised in this thread but never solved.
When I launch Firefox, several recent bookmarks that had been at the bottom of a folder have moved to the top of the folder.
Moderator note: This question has been edited to correct the formatting.
When I click Bookmarks > Manage Bookmarks I'm taken to Other Bookmarks where I never store anything. I'd delete it if I could but it doesn't appear to be an option, so… (read more)
When I click Bookmarks > Manage Bookmarks I'm taken to Other Bookmarks where I never store anything. I'd delete it if I could but it doesn't appear to be an option, so instead I'd like to taken directly to Bookmarks Menu. I came across this post from just over 4 years ago which sounded like it's exactly what I want, but it doesn't work. Are there any changes anyone can suggest that would allow it to work in 2026?
https://support.mozilla.org/en-US/questions/1373437
You can use the autoconfig.cfg file in the Firefox installation folder to initialize (set/lock) preferences and run privileged JavaScript code. In this case code to open the Library with the Bookmarks Menu folder selected. You can modify the showPlaces variable to open any of the four possible root folders (in this case [1]).
To use Autoconfig, place two files into the Firefox installation directory.
on Windows and Linux, they go into the same directory where Firefox is installed on macOS, they go into the Contents/Resources directory of the Firefox.app
The autoconfig.js file that specifies to use autoconfig.cfg is placed into the "defaults\pref" directory where the channel-prefs.js file is located.
The autoconfig.cfg file is placed at the top level of the Firefox directory.
autoconfig.cfg and autoconfig.js need to start with a comment line (//) autoconfig.js needs to use Unix line endings (LF instead of CR/LF)
See also:
https://support.mozilla.org/en-US/kb/customizing-firefox-using-autoconfig
Content of autoconfig.js
//
pref("general.config.filename", "autoconfig.cfg");
pref("general.config.obscure_value", 0);
pref("general.config.sandbox_enabled", false); // disable sandbox to allow privileged JavaScript
Content of autoconfig.cfg
// first line in autoconfig.cfg is a comment line try {
let {classes:Cc, interfaces:Ci, manager:Cm, utils:Cu} = Components;
var Services = globalThis.Services || ChromeUtils.import("resource://gre/modules/Services.jsm").Services;
function ConfigJS() { Services.obs.addObserver(this, 'chrome-document-global-created', false); }
ConfigJS.prototype = {
observe: function (aSubject) { aSubject.addEventListener('DOMContentLoaded', this, {once: true}); },
handleEvent: function (aEvent) {
let document = aEvent.originalTarget;
let window = document.defaultView;
let location = window.location;
if (/^(chrome:(?!\/\/(global\/content\/commonDialog|browser\/content\/webext-panels)\.x?html)|about:(?!blank))/i.test(location.href)) {
if (window._gBrowser) {
let showPlaces = ["AllBookmarks","BookmarksMenu","BookmarksToolbar","UnfiledBookmarks"][1];
elm = document.getElementById("Browser:ShowAllBookmarks");
if (elm) {
elm.setAttribute("oncommand", "PlacesCommandHook.showPlacesOrganizer('"+showPlaces+"')");
}
}
}
}
};
if (!Services.appinfo.inSafeMode) { new ConfigJS(); }
} catch(e) {Cu.reportError(e);}
Hi, Recently I have a problem with toolbar and in the Firefox browser. Usually I have 3 display (display from laptop and two monitors). When I use Firefox browser on the… (read more)
Hi,
Recently I have a problem with toolbar and in the Firefox browser. Usually I have 3 display (display from laptop and two monitors). When I use Firefox browser on the main display the toolbar very often is not working correctly.
Mainly the problem is with the folders inside the toolbar, so when I hover any folder, the bookmarks saved in that folder don't appear or appear for just one/two sec, then they disappear.
The second problem is when I have the firefox open on the second display (or on the laptop display) and I moved any tab (only the tab, not entire Firefox application), then my toolbar shows only the first bookmark that is saved on my list.
In attachments I added two ss (one is with my normal view on toolbar, and the second one is with the only first bookmark)
I have tried to bookmark websites recently and cannot. Once the star in the web address turns blue the pop up scree will appear. I hit the save button and the website d… (read more)
I have tried to bookmark websites recently and cannot. Once the star in the web address turns blue the pop up scree will appear. I hit the save button and the website does not bookmark in the file created for say 'news' bookmarks. I tried with other websites/bookmark files. Nothing seems to be happening.
Trying to fin ⅕d bookmarks
hi. I search for a bookmark by FF search function and want to edit its name. How? No, i do not want to tap and manually search through all bookmarks and then edit it. Ye… (read more)
hi. I search for a bookmark by FF search function and want to edit its name. How? No, i do not want to tap and manually search through all bookmarks and then edit it. Yes, the findings should be easy editable. It is a suggestion for the developers. thx