Ok, but what about received/send transactions? How to check them?
In theory you can run something similar to:
var blockNumber = web3.exp.blockNumber;
for(i=blockNumber; i>0; i--){web3.exp.getBlock(i)}
and check every block for your adress in it.
But only displayed block is the last one in the loop, and there must be a better way to do it. This method is just ridiculous.