Skip to content

Instantly share code, notes, and snippets.

@ericlaw1979
Created January 7, 2019 16:20
Show Gist options
  • Save ericlaw1979/b7de830da0ff64df18706e00f6461200 to your computer and use it in GitHub Desktop.
Save ericlaw1979/b7de830da0ff64df18706e00f6461200 to your computer and use it in GitHub Desktop.
Add a "Clear Sessions" item to Fiddler's notification icon
static function DoClear(src:Object, e: EventArgs) {
OnExecAction(["cls"]);
}
static function OnBoot() {
var o = new System.Windows.Forms.ToolStripMenuItem("Clear Sessions");
o.add_Click(DoClear);
FiddlerApplication.UI.mnuNotify.Items.Insert(0, o);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment