Jan
23rd
Mon
23rd
0-9: Fiddler、CharlesでのUA差し替えの方法
0-9:
Fiddlerの場合、Fiddler起動後、Ctrl+rを押してFiddlerScriptを以下のように修正すれば可能
static function OnBeforeRequest(oSession: Session)
{
// 上記行の下に以下の行を追加
if (
~oSession.host.indexOf(‘example.jp’)
|| ~oSession.host.indexOf(‘localhost’)
// ドメインを追加したい場合、上記行をコピペして追加
) {
// UAは好みに合わせて
…