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!
Thanks, @amonsosanz! 🎉
Thank you @amonsosanz!
Neat trick, @qmcree! 🤝
it doesn't work for me! option + click on the top right: show resolved.
option + click on Pull Request "show resolved" used to work for me, but recently it stopped working :(
Same, option + click seems to be gone.
indeed alt + click doesn't work anymore
None of the above worked for me. Tested June 2026:
document.querySelectorAll('button:has(.octicon-unfold)').forEach(e => e.click())None of the above worked for me. Tested June 2026:
document.querySelectorAll('button:has(.octicon-unfold)').forEach(e => e.click())
Thank you! 🎖️
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