Top/Blog/2004-11-04

2004-11-04はてなブックマーク

[Devel]HTTPヘッダを確認 Firefox livehttpheaders拡張 Permalinkはてなブックマーク

livehttpheaders.png

livehttpheaders (via @IT)

HTTPヘッダをリアルタイムで確認できるFirefox拡張。


結果は追記されていくが読み辛いので、
リクエスト毎にクリアされるように適当にいじる。

  • Firefoxを閉じる。
  • livehttpheaders.jarを解凍(unzip)する。
  • content/LiveHTTPHeaders.jsにパッチを当てる。
    --- LiveHTTPHeaders.js.orig     2004-05-15 14:45:44.000000000 +0900
    +++ LiveHTTPHeaders.js  2004-11-04 08:02:15.000000000 +0900
    @@ -609,6 +609,7 @@
         if (this.isCapturing) {
           if (this.usefilter && !name.match(this.filterRegexp)) return;
           if (this.useexclude && name.match(this.excludeRegexp)) return;
    +      this.clear();
           var oldrows = this.rowCount;
           this.addRow(name + "\r\n", this.URL);
           this.addRow("\r\n", this.REQSPACE);
  • livehttpheaders.jarとして再度圧縮(zip)する。
  • Firefoxを起動。
  • 下記2つにチェックを入れる。
    • Filter URLs with regexp
    • Exclude URLs with regexp
差分 一覧