SlideShare uses cookies to improve functionality and performance, and to provide you with relevant advertising. If you continue browsing the site, you agree to the use of cookies on this website. See our User Agreement and Privacy Policy.
SlideShare uses cookies to improve functionality and performance, and to provide you with relevant advertising. If you continue browsing the site, you agree to the use of cookies on this website. See our Privacy Policy and User Agreement for details.
Successfully reported this slideshow.
Activate your 14 day free trial to unlock unlimited reading.
12.
Fiddler Script デモ③
スクリプト例.
CustomRules.js – OnExecActionに以下のコードを追加します。
case "setbkcolor":
if(sParams.Length >= 2){
var sessions = FiddlerObject.UI.GetSelectedSessions();
if(sessions != null){
for(var i = 0; i < sessions.Length; i++){
var session = sessions [i];
if(session != null){
session ["ui-backcolor"] = sParams[1];
session.RefreshUI();
}
}
}
}
return true;
13.
Fiddler Script デモ③
•ご参考URL
http://docs.telerik.com/fiddler/knowledgebase/sessionflags
•Fiddler SessionFlags
•UI Flags
• ui-backcolor
The value of this flag determines the background
color used behind this session's entry in the Session
List.