Why are there multiple Chrome instances running even though I only have one window (only one tab) open?

37,616

Solution 1

These separate processes are called SANDBOXING. This allows A process to crash, but keeps other processes from crashing a system (or Chrome)

Solution 2

You can see which process does what on:

Wrench Menu->View Background Pages

Which looks like this:

enter image description here

Solution 3

Don't forget to read the Chrome introduction comic that covers this among other design decisions: Page 4 from comic

Solution 4

Google Chrome use separate process for each tab. Using interprocess communication you can manage multiple processes as one application.

Using multiple process can help an applications to be more robust and better use system resources.

See:

Share:
37,616

Related videos on Youtube

Piper
Author by

Piper

Updated on September 18, 2022

Comments

  • Piper
    Piper over 1 year

    Possible Duplicate:
    Multiple chrome.exe in Task Manager

    In Windows Task Manager it seems that I have multiple Chrome processes running, even though I only have one Chrome window open.

    How is this possible? I always thought each open program represented one process.

  • jan deeg
    jan deeg over 11 years
    "More robust", definitely. "Better use system resources" -- not so sure about that. Doesn't the multiprocess model use a fair bit more memory?
  • Admin
    Admin over 11 years
    if by "Better use system resources" you mean "way more resources" you are correct.
  • Colonel Panic
    Colonel Panic over 11 years
    Alternatively, right-click on some empty space in the tab bar then select 'task manager' or for a static snapshot, browse to chrome://memory
  • Hritika Agarwal
    Hritika Agarwal over 11 years
    Another alternative seems to be shift+escape key combination.