Skip to content

Instantly share code, notes, and snippets.

@pachacamac
pachacamac / nr26csv.js
Last active April 1, 2016 11:36
Number26 CSV Download Bookmarklet
javascript:(function(){
var delim = ";";
var csv = ["time","subject","amount","currency","original_amount","original_currency","category"].join(delim);
$('.node.activity').each(function(){
csv += "\n" + [
new Date(parseInt(this.dataset.timestamp)).toISOString(),
$('span h4', this)[0].innerText,
parseInt(this.dataset.amount),
"EUR",