Chrome Extension - control on instance creations
I have installed few extension in Google Chrome browser. Those are very helpful to me while development.
But, as soon as i have started Chrome browser, each plug-in creates it's own instance in background and total memory all开发者_运维知识库ocation in RAM is more than 450 MB.Is any way to set control on creation of instances on background.
Please help me. Thanks in advance.
Google Chrome Architecture forces each extension to run in a new process. In many cases, the extension's background page is idle but because of being a new process consumes some basic memory that goes beyond the control of the developer of the app.
Unfortunately, there is no way to limit the creation of instances in background but you can disable the extensions that you are not currently use to reduce the memory allocation caused by them.
Hope it helps!
精彩评论