Skip to content

Instantly share code, notes, and snippets.

@dogancelik
Last active May 13, 2025 03:56
Show Gist options
  • Save dogancelik/b82c6eac880eb58acd2b to your computer and use it in GitHub Desktop.
Save dogancelik/b82c6eac880eb58acd2b 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
@samzzz
Copy link

samzzz commented Aug 19, 2018

How do you use your script/tool on a not rooted Android device?
Where will be the exported file, inside which folder ?
Device: GALAXY S8+ SM-G955F. Android 8.0. Not Rooted

@Badprt23
Copy link

How do you use your script/tool on a not rooted Android device? Where will be the exported file, inside which folder ? Device: GALAXY S8+ SM-G955F. Android 8.0. Not Rooted

Ive made a "Tuturial" for this, https://github.com/Badprt23/Android-Firefox-Bookmarks

Pls forgive me for the shity ass pics i made didnt have much time

@jonoff
Copy link

jonoff commented May 13, 2025

For others who stumble on this, the newer location for places.sqlite: /data/data/org.mozilla.firefox/files/places.sqlite
And someone made a newer, complete script to convert it to html: https://gist.github.com/v3l0c1r4pt0r/15ef7181b7c4546963da68bc3b31c169

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment