In Chrome, if you use the --enable-memory-info flag, you can get data from:
console.memory;
which contains:
jsHeapSizeLimit totalJSHeapSize usedJSHeapSize
This data can also be extracted from a snapshot of the memory heap by pressing F12 , but this is not software.
source share