.xlsx or TBC .pdf — or
.
📥 How do I export my statements?
Bank of Georgia app: open the account → Statement → choose the period → download as Excel (.xlsx). Repeat per account (and per month if the app limits the range).
TBC app: open the account → Statement → choose the period → download as PDF.
Exact menu names vary a little between app versions; both banks' web banking offers the same downloads. Then drop the files here — on a phone with multibank installed, you can also share the file straight to multibank.
Load several months and several accounts together — the report merges them into one timeline and nets out transfers between your own accounts.
🔒 Your statements never leave this device — parsing runs in WebAssembly in your browser, with no server to send data to.
🔍 Verify it yourself
- Open DevTools → Network, then load a statement: zero requests happen while parsing (the page only fetches its own static files on load).
- Turn on airplane mode / DevTools Offline and reload — the app still works, because nothing needs a server.
- The Content-Security-Policy (response headers) forbids connections to anything but this origin, embedding by other sites, and inline scripts; every script and stylesheet carries an
integrityhash the browser enforces. - Checksums of every served file are published at /SHA256SUMS.txt — compare with
sha256sumagainst what your browser downloaded. - Saved data ("Remember") is AES-GCM ciphertext in your browser's IndexedDB, keyed by a passphrase that is never stored — inspect it under DevTools → Application → IndexedDB → multibank.