Skip to content

Instantly share code, notes, and snippets.

@fregante
Last active December 9, 2023 09:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fregante/6dbc4c6a1107064482461e0e75930f06 to your computer and use it in GitHub Desktop.
Save fregante/6dbc4c6a1107064482461e0e75930f06 to your computer and use it in GitHub Desktop.
GitHub Open project fields
// ==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