Search Support

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 replies
  • 15 have this problem
  • 21 views
  • Last reply by 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.

All Replies (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.