Skip to content

Instantly share code, notes, and snippets.

@alxbnct
Forked from dogancelik/bookmarks.sql
Created September 6, 2023 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alxbnct/60a90b4a8bfbd82e359112b94cfb0612 to your computer and use it in GitHub Desktop.
Save alxbnct/60a90b4a8bfbd82e359112b94cfb0612 to your computer and use it in GitHub Desktop.
Export Firefox Mobile Bookmarks #Android
/* bookmarks are stored in “/data/data/org.mozilla.firefox/files/mozilla/…….default/browser.db” */
SELECT url, created
FROM bookmarks
WHERE COALESCE(url, '') <> ''
ORDER BY created ASC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment