Run this in the console:
document.querySelectorAll('span.Details-content--closed').forEach((e)=>{e.click()})
From the creator of: unzip.dev 🚀
Run this in the console:
document.querySelectorAll('span.Details-content--closed').forEach((e)=>{e.click()})
From the creator of: unzip.dev 🚀
What code should I use to Fold them again ? thanks
just refresh?
You can use Alt + Click
on one comment to fold/unfold them all.
^ What @amonsosanz said worked for me. On Mac, that would be option
+ click
Thanks, @amonsosanz! 🎉
Whoa, game changer. On Mac Chrome, Option + Click on one comment's "Show resolved" link shows all for me. Thanks @amonsosanz!
to Unfold all Resolved conversation I use below and it works fine:
javascript:document.querySelectorAll('.js-resolvable-timeline-thread-container').forEach(e => { e.setAttribute('open', '') })()
What code should I use to Fold them again ?
thanks