Skip to content

Instantly share code, notes, and snippets.

@nikolaskhodov
Last active May 2, 2023 10:09
Show Gist options
  • Select an option

  • Save nikolaskhodov/1ec9225c8a5cad08910269e4bcb10ae0 to your computer and use it in GitHub Desktop.

Select an option

Save nikolaskhodov/1ec9225c8a5cad08910269e4bcb10ae0 to your computer and use it in GitHub Desktop.
Automatically expand Hasura permission sections
setInterval(() => {
Array.from(
document.querySelectorAll('details:not([open]) .cursor-pointer[data-test*="toggle"]')
).forEach((toggle) => {
toggle.click();
})
}, 300)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment