Last active
December 9, 2023 09:00
-
-
Save fregante/6dbc4c6a1107064482461e0e75930f06 to your computer and use it in GitHub Desktop.
GitHub Open project fields
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
// ==UserScript== | |
// @name GitHub Open project fields | |
// @version 1.0.0 | |
// @match https://github.com/*/issues/ | |
// @match https://github.com/*/pull/ | |
// @run-at document-end | |
// ==/UserScript== | |
function open() { | |
for (const button of document.querySelectorAll('collapsible-sidebar-widget:not([open]) [aria-label^="See more fields"]')) { | |
button.dispatchEvent(new MouseEvent('mousedown')) | |
} | |
} | |
open(); | |
document.addEventListener('turbo:render', open); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment