1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

FiddlerでWeb応答を任意のファイルに変更する

Last updated at Posted at 2022-04-15

環境

windows10
Progress Telerik Fiddler Classic

実現すること

ブラウザで特定のサイトを開いたら、自分が表示したい内容を書いたhtmlファイルで置き換えます。

方法

1.C:\Users\PCユーザの名前\Documents\Fiddler2\Captures\Responsesに書き換えたい内容のファイルを置きます。
たとえば、下記の内容のtest.htmlファイルを置きます。

test.html
<h1>hello</h1>

2.ブラウザのプロキシ設定でfiddlerプロキシ(デフォルトではlocalhost:8888)を通します

3.fiddlerのカスタムルールを開きます

4.OnBeforeResponseを検索してスクリプトを追記します
例えば、下記の内容を追記します。
qiitaからのレスポンスをtest.htmlに置き換えたかったら下記のようにします。

static function OnBeforeResponse(oSession: Session) {

//ここから追記
if (oSession.host == "qiita.com") {
    oSession["x-replywithfile"] ="test.html";
}
//ここまで追記

}

5.カスタムルールを上書き保存します

6.実際にブラウザでサイトを開いてみます
image.png
このような表示に置き換わっていたら成功です。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?