I am developing one extension for Firefox using addon-sdk. That extension opens one tab and load one web page which is updated each N minutes. This web page is processed using one content script. The problem is that memory grows each time the content script gets executed. Do you know why? Is there any way to call any garbage collector in order to maintain memory consuption stable?
EDIT: The web page contains bank account details and the Content Scripts look for new movements on in. It is a framed page and one of its frames (which contains movements list) is reloaded to see if any change occured. I use jquery to proccess the list. When new movements appear, those are sent to the extension using port and the extension saves them in a remote web server using Response.
about:memory- which entry increases? Does the memory usage go back if you click "Minimize memory usage"? - Wladimir Palant