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\"
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.