Important Notice: We're experiencing email notification issues. If you've posted a question in the community forums recently, please check your profile manually for responses while we're working to fix this.

On Monday the 3rd of March, around 5pm UTC (9am PT) users may experience a brief period of downtime while one of our underlying services is under maintenance.

Eheka Pytyvõha

Emboyke pytyvõha apovai. Ndorojeruremo’ãi ehenói térã eñe’ẽmondóvo pumbyrýpe ha emoherakuãvo marandu nemba’etéva. Emombe’u tembiapo imarãkuaáva ko “Marandu iñañáva” rupive.

Kuaave

keyword-column for bookmark-library-window

more options

Moin Moin. The bookmark-library-window does not comprise a keyword-column, which forces a user, upon searching for a new, unique keyword, to export all bookmarks and search the html-file. So the complexity of finding/changing keywords does rise from O(1) to O(N). 8^((( The solution of "https://support.mozilla.org/en-US/questions/1253217" os not a solution of this complexity-problem. _Tschüß, __Michael.

Moin Moin. The bookmark-library-window does not comprise a keyword-column, which forces a user, upon searching for a new, unique keyword, to export all bookmarks and search the html-file. So the complexity of finding/changing keywords does rise from O(1) to O(N). 8^((( The solution of "https://support.mozilla.org/en-US/questions/1253217" os not a solution of this complexity-problem. _Tschüß, __Michael.

Opaite Mbohovái (2)

more options

A possible workaround is this SQLite Viewer tool and open places.sqlite with the moz_keywords table.

Possible query to Execute:

  • SELECT * FROM 'moz_keywords' ORDER BY keyword

You can use the button on the "Help -> Troubleshooting Information" (about:support) page to go to the current Firefox profile folder or use the about:profiles page.


(bug 1145063 - Remove the keywords column from the Library)

more options

I'm familiar with two sites for querying SQLite databases (in this case, places.sqlite) the way cor-el suggested:

If you want the list to show the url and title, try this query (after pasting in place of the default query, you have to click Execute):

SELECT keyword, url, ifnull(title, '---') as Title 
FROM moz_keywords INNER JOIN moz_places 
  ON moz_keywords.place_id = moz_places.id 
ORDER BY keyword, url

Moambuepyre jscher2000 - Support Volunteer rupive