Last active
November 24, 2023 06:32
-
-
Save dogancelik/b82c6eac880eb58acd2b to your computer and use it in GitHub Desktop.
Export Firefox Mobile Bookmarks #Android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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 |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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