Firefox Bookmarks SQLite structure

前端 未结 5 1888
暖寄归人
暖寄归人 2021-01-30 00:02

I am trying to write a Firefox 3 add-on which will enable me to easily re-tag bookmarks. For example I have some bookmarks tagged \"development\" and some tagged \"Development\"

5条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-30 00:34

    Because I had to dig deeper to find this information, here is the request to fetch url, title and creation date of all your bookmarks:

    SELECT h.url, b.title, b.dateAdded
    FROM moz_places h
    JOIN moz_bookmarks b
    ON h.id = b.fk;
    

    I hope it'd help people looking for this answer.

提交回复
热议问题