max-chrome-tabs-test
Others

How many tabs can be open in Chrome?

On average, people usually open around 10-20 tabs on their browser. The most I have seen is closed to hundred and Chrome is still working fine. So I have been wondering for while that what is the maximum number of tabs we can open in Chrome. So today, I decided to test it.

Test Method

First, I write a batch script loop to start a new blank tab on chrome for specific times and display the tab count. Then we’ll keep increasing the number until Chrome has crashed. And while the script is running, I’ll use task manager to monitor the CPU and Memory usage.

@echo off
for /l %%i in (1,1,1000) do (
  echo Tab Count: %%i
  start chrome.exe "about:blank"
)

I choose to open a blank tab for the following reasons.

  1. Each website has different demand of processing power depending on design/complexity
  2. Opening lots of tabs on a single website (we’re talking about 10,000 tabs) can be considered DDoS attack and I don’t want to do that.

And we’re all set! Let’s proceed! BTW, you can see the live test in this video to see what happened.

The First Test

For the first attempt, let’s start with 1000 tabs.

max chrome tab test 1000

It appears that 1000 tabs doesn’t have any effect on Chrome. Since they are empty tabs, only sixteen hundreds megabytes of RAM were used. Chrome itself is still working and responsive.

chrome max tabs

So let’s increase the number and run the test again.

The Second Test

This time let’s try 5000 tabs.

max chrome tab test 5000

Now I start to see the new tab is getting opened slower when the total number of tabs is above 1000. And after reached 2000, the speed is significantly dropped and we started to see Chrome window freezed sometimes.

Still, when the script ended, It’s still working with around 3 gigs of RAM being used.

The Final Test

max chrome tab test 10000

So it’s time for the final test, let’s increase the number to 10000 tabs.

Right after I started the script, Chrome window freezed all the time. The new tabs keep getting slower and slower to open. But the strange thing is even the CPU usage is at 100%, I notice that beyond 5000 tabs, the memory usage for the new tabs is really minimal.

max-chrome-tab-test-5-crashed

And finally Now at around 9000 tabs. Chrome is finally crashed and I have to terminate the script.

Conclusion

So 9000 tabs is the maximum number for this test. I checked my result with others and apparently many people with 8-16GB RAM got around 8000-9000 tabs too.

And that’s it for this test. Hope you guys enjoy. If you love to see more development tips and tutorial videos, please subscribe to our channel for weekly video. Thanks for keep reading til the end 🙂

One comment

  1. Thanks for the article
    Can you write a script telling Google chrome to open specific number of tabs to visit a specific URL and then close the tabs after some specific time

Leave a Reply

Your email address will not be published. Required fields are marked *

error: