Skip to content

Instantly share code, notes, and snippets.

@mbmccormick
Created September 22, 2014 20:47
Show Gist options
  • Save mbmccormick/be61eb135adcd6a63f74 to your computer and use it in GitHub Desktop.
Save mbmccormick/be61eb135adcd6a63f74 to your computer and use it in GitHub Desktop.
Delete accidental Activity Records from Fitbit.com
if(document.URL!="https://www.fitbit.com/activities"){alert("This script only runs on the Fitbit.com Activities page!")}$("div.history tbody tr.item td:nth-child(3)").each(function(){var steps=$(this).text().trim();if(steps<100){$(this).parent().find(".delete-form .delete").click()}});$("button.confirm").click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment