-
-
Save alxbnct/60a90b4a8bfbd82e359112b94cfb0612 to your computer and use it in GitHub Desktop.
Export Firefox Mobile Bookmarks #Android
This file contains hidden or 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment