-
-
Save Badprt23/abba63d364cec6e6aaa0cbb43b3c33b9 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 title, 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