Skip to content

Instantly share code, notes, and snippets.

@luckyshot
Created February 26, 2021 19:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luckyshot/2922a3f47411993144c1674e58dc263f to your computer and use it in GitHub Desktop.
Save luckyshot/2922a3f47411993144c1674e58dc263f to your computer and use it in GitHub Desktop.
Bookmarklets: Useful miscelaneous

CaixaBank

Get total fluctuation to paste in Excel:

let total = '';
document.querySelectorAll('.color--gray500.font--size-90.white_space--nowrap').forEach(function(item){total += "\n" + item.innerHTML.replace('+ ', '').replace('.','').replace(',','.');});
console.log(total)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment