Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Przeszukaj pomoc

Unikaj oszustw związanych z pomocą.Nigdy nie będziemy prosić Cię o dzwonienie na numer telefonu, wysyłanie SMS-ów ani o udostępnianie danych osobowych. Zgłoś podejrzaną aktywność, korzystając z opcji „Zgłoś nadużycie”.

Learn More

How to edit url when adding a new bookmark

  • 4 odpowiedzi
  • 5 osób ma ten problem
  • 1 wyświetlenie
  • Ostatnia odpowiedź od Bidule1848

more options

In Firefox 23, I can't modify the url anymore when adding a new bookmark : the edit box is gone. I now have to use the bookmark editor. But it is too long and complicated.

Is there another to do it as quickly as before ?

Is this possible to re-enable this feature, be it a config option or an extension ?

Thanks

In Firefox 23, I can't modify the url anymore when adding a new bookmark : the edit box is gone. I now have to use the bookmark editor. But it is too long and complicated. Is there another to do it as quickly as before ? Is this possible to re-enable this feature, be it a config option or an extension ? Thanks

Wybrane rozwiązanie

You can make extra fields visible in the Edit This Bookmark pop-up with some code in userChrome.css

Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.


#editBMPanel_locationRow,
#editBMPanel_keywordRow {
visibility: visible !important;
-moz-box-align: center !important;
}

More selectors:

#editBMPanel_descriptionRow
#editBMPanel_loadInSidebarCheckbox
Przeczytaj tę odpowiedź w całym kontekście 👍 2

Wszystkie odpowiedzi (4)

more options

Wybrane rozwiązanie

You can make extra fields visible in the Edit This Bookmark pop-up with some code in userChrome.css

Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.


#editBMPanel_locationRow,
#editBMPanel_keywordRow {
visibility: visible !important;
-moz-box-align: center !important;
}

More selectors:

#editBMPanel_descriptionRow
#editBMPanel_loadInSidebarCheckbox
more options

You can also use Ctrl + D when saving a bookmark, to show where you want it at.

more options

The question is about editing the URL (location) field of the bookmark and not where it gets saved.
You would have to open the bookmark in the sidebar or in the Bookmarks/History Manager (Library) to edit the location field.

more options

Editing userChrome.css solved my problem. Thanks !