Firefox plugin to simulate slow internet connection or limit bandwidth? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T06:32:23Z http://stackoverflow.com/feeds/question/473465 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth 64 Firefox plugin to simulate slow internet connection or limit bandwidth? Greg 2009-01-23T16:07:08Z 2009-09-16T10:06:47Z <p>Is there a Firefox plugin available that will simulate various connection speeds (<strong>especially when testing from <a href="http://localhost" rel="nofollow">http://localhost</a></strong>)?</p> <p>I know there are standalone applications to do it, but I'd rather have a plugin.</p> <p>Thanks</p> <p><strong>Edit: Thanks to @UselessAdmin - FirefoxThrottle has now been updated to work on localhost!</strong></p> http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth/473489#473489 72 Answer by Jonathan Sampson for Firefox plugin to simulate slow internet connection or limit bandwidth? Jonathan Sampson 2009-01-23T16:13:31Z 2009-09-16T10:06:47Z <p><a href="https://addons.mozilla.org/en-US/firefox/addon/5917" rel="nofollow">Firefox Throttle</a> <strong>Now works on localhost</strong></p> <blockquote> <p>"Firefox Throttle is a small plug-in for your favorite Web Browser, that allows you to cap download/upload rates and monitor current bandwidth utilization. "</p> </blockquote> <p><a href="http://www.uselessapplications.com/en/Application/IEThrottle.aspx" rel="nofollow">Internet Explorer Throttle</a> <em>(As of 2009/01/23, doesn't work for localhost)</em></p> <blockquote> <p>"IE Throttle is a small plug-in for your Microsoft Internet Explorer, that allows you to cap download/upload rates."</p> </blockquote> http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth/482988#482988 33 Answer by tharkun for Firefox plugin to simulate slow internet connection or limit bandwidth? tharkun 2009-01-27T11:00:52Z 2009-01-27T11:00:52Z <p>For several *NIX distros there are packages called 'iprelay'. </p> <p><strong>Debian</strong></p> <p>For example Debian you could do the following:</p> <pre><code>$ iprelay -b2500 8000:localhost:80 # Point browser at http://localhost:8000 </code></pre> <p>and you can see your website creations as a poor modem user would...</p> <p><strong>Ubuntu</strong></p> <p>or a link for an Ubuntu package: <a href="http://manpages.ubuntu.com/manpages/gutsy/en/man1/iprelay.1.html" rel="nofollow">http://manpages.ubuntu.com/manpages/gutsy/en/man1/iprelay.1.html</a></p> <p><strong>Windows</strong></p> <p>Another tool which works on Windows: <a href="http://www.ngcoders.com/downloads/internet-speed-simulator-proxy-throttler" rel="nofollow">Internet Speed Simulator</a></p> http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth/483002#483002 6 Answer by DrJokepu for Firefox plugin to simulate slow internet connection or limit bandwidth? DrJokepu 2009-01-27T11:07:01Z 2009-01-27T11:07:01Z <p>I think you would be better off by using a purpose built proxy as it would work in all browsers and/or any other applications. So I think you should have a look at <a href="http://www.dallaway.com/sloppy/" rel="nofollow">Sloppy</a>.</p> <p>Basically, all you need to do is launch Sloppy, enter the address of your site and then it will open it in your default browser and simulate a dial-up speed. As a plus side, it's written in Java so it would work on Mac or Linux as well.</p> http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth/483029#483029 5 Answer by Jeremy Rudd for Firefox plugin to simulate slow internet connection or limit bandwidth? Jeremy Rudd 2009-01-27T11:16:45Z 2009-01-27T11:16:45Z <p>Use <a href="http://www.netlimiter.com/" rel="nofollow">NetLimiter</a> to limit your internet bandwidth upload/download per program.</p> <p>Simply <strong>checkmark</strong> the Incoming/Outgoing limit checkbox next to <strong>Firefox</strong>, type in a <strong>speed</strong> limit in the current units (Kbits/KB per sec/kbits per sec).</p> <p>Firefox's connection speed is <strong>limited</strong> to your setting so you can simulate slow download speeds, etc!</p> http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth/483847#483847 4 Answer by phloopy for Firefox plugin to simulate slow internet connection or limit bandwidth? phloopy 2009-01-27T15:27:03Z 2009-01-27T15:27:03Z <p>Adding to <a href="http://stackoverflow.com/users/8954/drjokepu">DrJokepu's</a> answer, set up <a href="http://www.dallaway.com/sloppy/" rel="nofollow">Sloppy</a> (or a similar proxy) then use the <a href="https://addons.mozilla.org/en-US/firefox/addon/2464" rel="nofollow">FoxyProxy</a> plugin for firefox, which supports sending particular addresses through particular proxies, as well as easy toggling if you don't want to use them at all.</p> http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth/483879#483879 0 Answer by Ates Goral for Firefox plugin to simulate slow internet connection or limit bandwidth? Ates Goral 2009-01-27T15:35:13Z 2009-01-27T15:35:13Z <p>There could be a way to trick the plugins mentioned in @Jonathan Sampson's <a href="http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection#473489">answer</a> to do throttling also for your local server.</p> <p>If you have a high-speed connection and you're behind a modem/router that you are willing to configure (one time set up):</p> <ol> <li>Add an entry in your hosts file to point localhost to your external IP (that hopefully doesn't change much). You mentioned that you're using virtual hosts. You should add them as well.</li> <li>In your router, map external accesses to port 80 (or whatever) to port 80 of your local machine.</li> <li>Hopefully, the plugin won't think that the server you're trying to access is on a local IP and therefore won't throttle the connection.</li> </ol> <p>Assuming your external IP doesn't chance all the time (especially if you're in an office with a dedicated line), this solution will help you to use those plugins, with a one-time or one-in-a-while setup in your modem/router.</p> http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth/487575#487575 10 Answer by Kristof Neirynck for Firefox plugin to simulate slow internet connection or limit bandwidth? Kristof Neirynck 2009-01-28T13:15:49Z 2009-01-28T13:15:49Z <p>The "Charles Web Debugging Proxy" has no problem throttling localhost. It works on windows, mac and linux. The trial version is fully functional and a licence costs only $50. I highly recommend it.</p> <p><a href="http://www.charlesproxy.com/download.php" rel="nofollow">http://www.charlesproxy.com/download.php</a></p> http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth/488276#488276 12 Answer by bike-fan for Firefox plugin to simulate slow internet connection or limit bandwidth? bike-fan 2009-01-28T16:23:05Z 2009-01-28T16:23:05Z <p>The solution I use is a combination of <a href="http://www.uselessapplications.com/en/Application/FirefoxThrottle.aspx" rel="nofollow" title="FireFox Throttle">FireFox throttle</a> and <a href="http://www.dallaway.com/sloppy/" rel="nofollow" title="Sloppy">Sloppy</a> </p> <ol> <li><p>Install FireFoxThrottle. This will display the speed in the FireFox status bar. </p></li> <li><p>Now in firefox go to the address you want to throttle and get the <strong>EXACT URL</strong>.</p> <ul> <li>Alot of websites have redirects which can throw sloppy off. </li> <li>Go to the start page for the site you want to throttle. </li> <li>Copy the exact URL into the windows clipboard. The exact URL will include the http:// and the www parts if they are part of the URL,</li> </ul></li> </ol> <p><strong>example</strong>: I'm in Canada so if I type "<strong>google.com</strong>" in the FireFox URL it actually takes me to <strong><a href="http://www.google.ca/" rel="nofollow">http://www.google.ca/</a></strong></p> <ol> <li><p>Start Sloppy (it is a java webstart) so just double click the sloppy.jnlp file</p></li> <li><p>Now paste the URL into sloppy (i.e. Paste the entire "http://www.google.ca/" string).</p></li> <li><p>Firefox will take you to <a href="http://127.0.0.1:7569/" rel="nofollow">http://127.0.0.1:7569/</a> which is a throttled version of the site.</p></li> <li><p>FireFox Throttle will display in the FireFox status bar the speeds you are getting.</p></li> </ol> http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth/489390#489390 -2 Answer by Paul Tomblin for Firefox plugin to simulate slow internet connection or limit bandwidth? Paul Tomblin 2009-01-28T21:10:26Z 2009-01-28T21:10:26Z <p>Get your cable modem from Time Warner, and you won't have to simulate a slow connection, it will just happen.</p> http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth/490757#490757 10 Answer by AndrewDotHay for Firefox plugin to simulate slow internet connection or limit bandwidth? AndrewDotHay 2009-01-29T07:20:26Z 2009-01-29T07:20:26Z <p>Fiddler can similulate slow modem connections:</p> <p>Here's <a href="http://groups.msn.com/HTTPFiddler/featurerequests.msnw?action=get_message&amp;mview=0&amp;ID_Message=687" rel="nofollow">how to modify the delays</a> in the request and response.</p> <p>Here's <a href="http://www.west-wind.com/weblog/posts/596348.aspx" rel="nofollow">how to use Fiddler with Localhost</a>.</p> http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth/493189#493189 2 Answer by slf for Firefox plugin to simulate slow internet connection or limit bandwidth? slf 2009-01-29T20:10:23Z 2009-01-29T20:10:23Z <p>Perhaps what you actually need is the <a href="http://developer.yahoo.com/yslow/" rel="nofollow">YSlow addon for FireBug</a>?</p> http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth/494952#494952 0 Answer by Otherside for Firefox plugin to simulate slow internet connection or limit bandwidth? Otherside 2009-01-30T09:26:28Z 2009-01-30T09:34:34Z <p>You might be able to use the <a href="http://wiki.squid-cache.org/Features/DelayPools" rel="nofollow">DelayPools</a> feature from <a href="http://www.squid-cache.org/" rel="nofollow">Squid proxy</a>.</p> <p>Another possibility is the <a href="http://www.charlesproxy.com/wiki/bandwidth_throttle" rel="nofollow">bandwidth throttle</a> feature from <a href="http://www.charlesproxy.com/" rel="nofollow">Charles Proxy</a>. Charles Proxy includes an Add-On for Firefox which will automatically configure the proxy settings.</p> http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth/825883#825883 3 Answer by UselessAdmin for Firefox plugin to simulate slow internet connection or limit bandwidth? UselessAdmin 2009-05-05T16:55:06Z 2009-05-05T16:55:06Z <p>Due to overwhelming popular demand Firefox Throttle has been updated, it can now throttle localhost connections. </p> http://stackoverflow.com/questions/473465/firefox-plugin-to-simulate-slow-internet-connection-or-limit-bandwidth/929038#929038 0 Answer by Richard for Firefox plugin to simulate slow internet connection or limit bandwidth? Richard 2009-05-30T05:00:35Z 2009-05-30T05:00:35Z <p>Run a proxy server, config firefox to use the proxy server, and control the bandwidth on the proxy server. </p>