Skip to content

Instantly share code, notes, and snippets.

@Badprt23
Badprt23 / bookmarks.sql
Last active October 21, 2023 18:14 — forked from dogancelik/bookmarks.sql
Export Firefox Mobile Bookmarks #Android
/* bookmarks are stored in “/data/data/org.mozilla.firefox/files/mozilla/…….default/browser.db” */
SELECT title, url, created
FROM bookmarks
WHERE COALESCE(url, '') <> ''
ORDER BY created ASC