|
|
|
|
|
by tobestobestobes
2001 days ago
|
|
It's a huge leap forward in browser management. Not exactly a replacement for headless browsing/scraping etc, but for personal use, nothing compares. A big contribution to the "personal data management" toolbox. In the realm of tab management, I use this one liner in console of chrome://inspect every once in a while, then just close all of my tabs: collection = document.getElementById("pages").getElementsByClassName("subrow"); final_output_tsv = "title\turl\n"; for (let item of collection) {final_output_tsv += `${item.children[0].innerHTML}\t${item.children[1] ? item.children[1].innerHTML : "N/A"}\n`}; copy(final_output_tsv)
Substitute "devices" for "pages" to get android chrome tabsThis way I can backup all my tabs in simple, non-bookmark format and search them using python etc. |
|