Skip to content

Instantly share code, notes, and snippets.

@Krokette
Created November 17, 2020 19:57
Show Gist options
  • Save Krokette/3ab13f3a0fc7f52081e0a90d68946bca to your computer and use it in GitHub Desktop.
Save Krokette/3ab13f3a0fc7f52081e0a90d68946bca to your computer and use it in GitHub Desktop.
var tabsNodes = document.querySelectorAll('.browser>.list.pages>.row')
var tabsAsText = Array.from(tabsNodes).map((t) => t.querySelector(".name").innerText + "\n" + t.querySelector(".url").innerText + "\n")
copy(tabsAsText.join("\n"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment