We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Buscar en Ayuda

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

Firefox library - keyword column missing.

  • 4 respuestas
  • 15 tienen este problema
  • 16 visitas
  • Última respuesta de zzdave13

more options

In Firefox "library" i cannot see or choose a "keyword" column. I was able to see keyword column just a few days ago and searching suggests there should be one but i can no longer find/see it. I recently upgraded to FF 40.0.2 but i'm not sure if that's connected or not.

In Firefox "library" i cannot see or choose a "keyword" column. I was able to see keyword column just a few days ago and searching suggests there should be one but i can no longer find/see it. I recently upgraded to FF 40.0.2 but i'm not sure if that's connected or not.

Todas las respuestas (4)

more options

Viewing the complete list of changes made for Firefox 40 I found this fixed Bug.

Deprecate old keywords API = in favor of a new API https://bugzilla.mozilla.org/show_bug.cgi?id=1140395

And this as an explanation - https://developer.mozilla.org/en-US/docs/Mozilla/Tech/Places/Using_the_Places_keywords_API - for why the change was made. Basically, "Note this is the same feature previously known as Bookmark keywords, the key difference is that keywords are not bound to a specific bookmark, but to a specific URL."

The keyword can still be viewed in Properties for a bookmark, accessed via context menu from the Navigation Toolbar button drop-down, the Bookmarks Sidebar, and the Menu Bar drop-down. Gone from the Library window.

more options

Thanks, the-edmeister. I guess that answers my question. It's unfortunate that the keywords are no longer visible in the library as that is a good way to see all assigned keywords at once.

more options

Maybe use the SQLite Manager extension with a query like this:

SELECT b.title AS Bookmark, p.title AS Folder, h.title AS "Parent Folder", f.url AS URL, k.keyword AS Keyword
FROM
(((moz_bookmarks AS b
 INNER JOIN moz_bookmarks AS p ON p.id = b.parent)
 INNER JOIN moz_bookmarks AS h ON p.parent = h.id)
 INNER JOIN moz_places AS f ON f.id = b.fk)
 INNER JOIN moz_keywords AS k ON k.place_id = b.fk
ORDER BY "Parent Folder",Folder, Keyword ASC
more options

Hi cor-el,

thanks, your answer is really helpful and does what i want. Not as convenient as having the column there by default in the library but better than nothing.

Dave.