Created
August 21, 2023 03:34
-
-
Save truongvan/5cbee4cb16920ea680710cb763ba2758 to your computer and use it in GitHub Desktop.
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(function() { | |
| document.querySelector(".notion-sidebar-trash-menu> div:nth-child(2) > div > div > div > div > div:nth-child(3) > div > div:nth-child(2)").click(); | |
| setTimeout(function() { | |
| let deleteButton = document.querySelector("[role='dialog'] [role='menu'] > div > [role='button']"); | |
| if (deleteButton && deleteButton.textContent.includes("Delete")) { | |
| deleteButton.click() | |
| }; | |
| }, 500) | |
| }, 2000 | |
| ) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment