Created
August 28, 2023 16:35
-
-
Save mopa/5edef223b83dc8f71baba32ac13fa631 to your computer and use it in GitHub Desktop.
A Todoist bookmarklet to pick a random task from the current project
This file contains 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
javascript: items = document.getElementsByClassName("task_list_item__content"); | |
items[Math.floor(Math.random() * items.length)].click(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment