Skip to content

Instantly share code, notes, and snippets.

View dzhavat's full-sized avatar
🏠
Working from home

Dzhavat Ushev dzhavat

🏠
Working from home
View GitHub Profile
@dzhavat
dzhavat / github-expand-status-checks.js
Last active September 12, 2023 19:10
GitHub Expand All Status Checks Bookmarklet
javascript: (() => { const elemInPrPage = document.querySelector('.merge-status-list.js-updatable-content-preserve-scroll-position'); if (elemInPrPage != null) { elemInPrPage.style.maxHeight = 'none' } const elemInMainRepoPage = document.querySelector('div[class*="Dialog__Body-"] div[class*="Box-sc-"]'); if (elemInMainRepoPage != null) { elemInMainRepoPage.style.maxHeight = 'none' } })();