Guest User

Untitled

a guest
Jan 9th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. /*
  2. Export bookmarks from Chrome as text.
  3. Go to Bookmarks Manager->Organize->Export to HTML file.
  4. Then open that file with chrome, open console (Ctrl+Shift+J) and run this command:
  5. */
  6.  
  7. [].map.call(document.querySelectorAll("dt a"), function(a) {
  8. return a.textContent + " - " + a.href
  9. }).join("\n");
Add Comment
Please, Sign In to add comment