Skip to content

Instantly share code, notes, and snippets.

@magistrula
Last active October 16, 2025 18:38
Show Gist options
  • Select an option

  • Save magistrula/d43cba358a656de27ab1a88735b3b7ab to your computer and use it in GitHub Desktop.

Select an option

Save magistrula/d43cba358a656de27ab1a88735b3b7ab to your computer and use it in GitHub Desktop.
Github Snippets
// 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