ローカルで細い回線をエミュレートする

Fiddlerをインストールします
http://www.telerik.com/download/fiddler

メニュー > Rules > Customize Rules …

        if (m_SimulateModem) {
            // Delay sends by 300ms per KB uploaded.
            oSession["request-trickle-delay"] = "300"; 
            // Delay receives by 150ms per KB downloaded.
            oSession["response-trickle-delay"] = "150"; 
        }

になっている箇所を

        if (m_SimulateModem) {
            // Delay sends by 300ms per KB uploaded.
            oSession["request-trickle-delay"] = "100"; 
            // Delay receives by 150ms per KB downloaded.
            oSession["response-trickle-delay"] = "100"; 
        }

などにすることで任意の速度にできます。
下の例だと1KBごとに100ms遅延をはさみます。(10KB/s 程度)

メニュー > Rules > Performance > Simulate Modem Speeds
で有効化します。