Skip to content

Instantly share code, notes, and snippets.

@mopa
Created August 28, 2023 16:35
Show Gist options
  • Save mopa/5edef223b83dc8f71baba32ac13fa631 to your computer and use it in GitHub Desktop.
Save mopa/5edef223b83dc8f71baba32ac13fa631 to your computer and use it in GitHub Desktop.
A Todoist bookmarklet to pick a random task from the current project
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