Created
August 11, 2014 16:20
-
-
Save tebriel/ad8435a6fff17093eeaa to your computer and use it in GitHub Desktop.
Bookmarklet to download the last week's transactions on capital one's crappy, crappy site. Add this as a bookmark, then go to the transactions download page, click the bookmark, wait for the .qfx to get generated.
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
| javascript:(function(){setDate = function(id, date) {$(id).val([date.getMonth()+1, date.getDate(), date.getFullYear()].join('/'))}; setDate('#txtFromDate_TextBox', new Date((new Date()).setDate((new Date()).getDate()-7))); setDate('#txtToDate_TextBox', new Date());$('#ctlStatementFilter_1').prop('checked', true);$('#btnDownload').click();})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment