Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Export bookmarks from Chrome as text.
- Go to Bookmarks Manager->Organize->Export to HTML file.
- Then open that file with chrome, open console (Ctrl+Shift+J) and run this command:
- */
- [].map.call(document.querySelectorAll("dt a"), function(a) {
- return a.textContent + " - " + a.href
- }).join("\n");
Add Comment
Please, Sign In to add comment