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?

link|improve this question

73% accept rate
feedback

2 Answers

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.

link|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
feedback

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

link|improve this answer
This worked like a charm! – rzetterberg Feb 29 at 9:09
feedback

Your Answer

 
or
required, but never shown

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