I've noticed that my NewsBlur tabs take a lot of CPU and RAM and while I haven't debugged it for specific numbers yet, I have anecdotally noticed that the biggest visible indicator of performance stress is scrolling issues in the various feed rivers (where I personally spend most of my time). I know of two libraries that have worked hard to optimize unloading DOM elements that have scrolled out of view in an infinite scroll scenario. (This helps performance by giving the browser less work to do on already viewed items.)
The libraries I know of are:
Airbnb's infinity.js: http://airbnb.github.io/infinity/
WinJS' ListView: http://dev.windows.com/en-us/develop/winjs
Infinity.js is certainly the lighter weight library of the two. It requires you to avoid changing the size of items, so it might mean changes to the behaviors of social feed expansion and the Save/Share buttons at small window sizes.
Anyway, please take a look at this idea as it might be a great way to improve the performance of NewsBlur in our browsers.

