Skip to content

Instantly share code, notes, and snippets.

@truongvan
Created August 21, 2023 03:34
Show Gist options
  • Save truongvan/5cbee4cb16920ea680710cb763ba2758 to your computer and use it in GitHub Desktop.
Save truongvan/5cbee4cb16920ea680710cb763ba2758 to your computer and use it in GitHub Desktop.
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