Created
September 22, 2014 20:47
-
-
Save mbmccormick/be61eb135adcd6a63f74 to your computer and use it in GitHub Desktop.
Delete accidental Activity Records from Fitbit.com
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
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