Skip to content

Expand outdated Github Comments

Louis Bergelson edited this page Aug 18, 2017 · 3 revisions

To expand all comments on a github pull request you can create a bookmark with the following code:

javascript:Array.from(document.getElementsByClassName('outdated-comment')).forEach(l => l.classList.add('open'));

Click the bookmark while in a pull request to expand all the outdated comments.

Thanks to Brendan Annable via coderwall.com.