Last active
October 16, 2025 18:38
-
-
Save magistrula/d43cba358a656de27ab1a88735b3b7ab to your computer and use it in GitHub Desktop.
Github Snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Clear "Viewed" checkmarks | |
| javascript:(Array.from(document.querySelectorAll('button[aria-pressed="true"]')).forEach(el => el.click()))(); | |
| // Collapse all files in PR | |
| javascript:(Array.from(document.querySelectorAll('button[data-component="IconButton"] svg.octicon-chevron-down')).filter(el => el.closest('button').parentElement.textContent.includes('file')).forEach(el => el.closest('button').click()))(); | |
| // Expand all files in PR | |
| javascript:(Array.from(document.querySelectorAll('button[data-component="IconButton"] svg.octicon-chevron-right')).filter(el => el.closest('button').parentElement.textContent.includes('file')).forEach(el => el.closest('button').click()))(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment