Created
February 4, 2016 17:15
-
-
Save mir4a/231a9d267c81e2243320 to your computer and use it in GitHub Desktop.
Simple bookmarklet which is prints to console list of tasks was done from Freshbooks report (Time Sheets Detailed).
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: | |
var fr_pat = /#gh-(\S+): /g; | |
var fr_str = ''; | |
$('.report tr').each(function(i,el) { | |
$td = $(el).find('.text_wrap').eq(3);fr_str += $td.text().replace(fr_pat, '- ') + '\n'; | |
}); | |
console.log(fr_str); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment