DEV Community

Discussion on: When you never close tabs on your mobile Chrome browser

Collapse
 
dkodr profile image
Dariusz Kuśnierek • Edited

Thanks a lot! This really helped me :-) I just made a small modification:

To parse the JSON and save it to a Markdown file (with titles and urls):

curl http://localhost:9222/json/list | jq -r ".[] | \"[\" + .title + \"](\" + .url + \")\"" > mobile.tabs.md
Enter fullscreen mode Exit fullscreen mode
Collapse
 
kangarooo profile image
kangarooo • Edited

How to make it URL clickable with a href and title to html file so i can import or click them?
what is wrong here?
curl localhost:9222/json/list | jq -r ".[] | \"(<a href="" + .url + \")">[\" + .title + \"]\"" > mobile.tabs.html