Created
June 3, 2024 19:54
-
-
Save ziadoz/c09de38c2eae691fb42c1baf7a78d0a4 to your computer and use it in GitHub Desktop.
Extract Safari Reading List Bookmarks
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
// Export bookmarks, open HTML, run this: | |
const links = []; | |
document.querySelectorAll('body > dt:nth-of-type(4) a').forEach((a) => { | |
links.push(a.getAttribute('href')); | |
}); | |
links.join("\n"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment