Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

For web development purposes, I want to be able to throttle the bandwidth Chrome uses, especially for localhost connections.

I know that the add-on "Firefox Throttle" does that in Firefox; is there a way to do the same thing in Chrome, with the web development tools or an extension?

share|improve this question

2 Answers

Under Mac OS X you can use ipfw.

sudo ipfw pipe 1 config bw 15KByte/s
sudo ipfw add 1 pipe 1 src-port 80
# delete the port
sudo ipfw delete 1

My Source: http://hints.macworld.com/article.php?story=20080119112509736

share|improve this answer
This worked like a charm! – rzetterberg Feb 29 '12 at 9:09

You can't 'throttle' localhost (127.0.0.1) connections. That's just never going to happen. Since what you need is to test a web application in a pre-production environment, you have to find some sort of network environment emulator/simulator.

One of the companies I once worked for used Shunra vCat exactly for such testing purposes, among others. You might find a free alternative or two if you'd look around, but I'm not sure.

share|improve this answer
I used to use firefox throttle, and it does throttle localhost connections. If you don't trust me, install an old version of firefox with the "firefox throttle" extension. screenshot – pinouchon Jul 29 '11 at 8:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.