Open console tab or ESC for open mini console if you can't see.
paste and run this script below:
// for OLD Edge (I don't know since version is)[].slice.call(document.querySelectorAll('[role=listitem]')).map(e=>e.children[1].children[0].children[0].textContent).join('\n')// for NEW Edge (Jul 19, 2022)Array.from(document.querySelectorAll('[role=listitem] [style="display: flex;"]')).filter(e=>Array.from(e.children).every(c=>c.nodeName==='P')).map(e=>Array.from(e.children).map(c=>c.textContent).join('')).join('\n')
get result string and save to your favorite storage.
If you are creating or already have a similar article on how to build Microsoft Edge add-ons, you could refer to our developer resources here: docs.microsoft.com/en-us/microsoft...
Software engineer with a passion for building user-friendly and efficient interfaces. Proven ability to deliver high-quality code that meets the needs of both users and businesses.
Top comments (3)
Interesting article!
If you are creating or already have a similar article on how to build Microsoft Edge add-ons, you could refer to our developer resources here: docs.microsoft.com/en-us/microsoft...
got error!
I added a new script that works properly but dirty. you can try it.