Ce site disposera de fonctionnalités limitées pendant que nous effectuons des opérations de maintenance en vue de vous proposer un meilleur service. Si un article ne règle pas votre problème et que vous souhaitez poser une question, notre communauté d’assistance est prête à vous répondre via @FirefoxSupport sur Twitter, et /r/firefox sur Reddit.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

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.

Toutes les réponses (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

Modifié le par jscher2000 - Support Volunteer