Last active
May 2, 2023 10:09
-
-
Save nikolaskhodov/1ec9225c8a5cad08910269e4bcb10ae0 to your computer and use it in GitHub Desktop.
Automatically expand Hasura permission sections
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
| 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