Created
January 1, 2020 20:55
-
-
Save mghignet/0560b09e0adf2e027dec006bc09489d6 to your computer and use it in GitHub Desktop.
All scripts that can be useful to get the most out of Tiime
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
| // Get the total number of kilometers for a year (in case the amount has been reinitialized) | |
| // Run that in the Chrome console | |
| Array.from(document.querySelectorAll(".table tr.ng-scope")) | |
| .filter(row => row.querySelector("td:nth-of-type(1)").textContent.endsWith("2019")) | |
| .map(row2019 => Number(row2019.querySelector("td:nth-of-type(3)").textContent)) | |
| .reduce((a, b) => a + b, 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment