I want auto close tabs.

2 Answers 109 Views
Fiddler Classic
Hoge
Top achievements
Rank 1
Iron
Hoge asked on 02 Oct 2022, 04:02 AM

Question

I want auto close tabs.

I'm every times doing this steps.

1. Launch Fiddler Classic
2. Close these tabs(Click mouse middle button to close)

  • Fiddler Orchestra Beta
  • Log
  • Timeline
  • Get Started
  • Statistics
  • Auto Responder

3. Start using Fiddler Classic

I'm tired.
I'm doing this about 1 year ago.

So, I want auto close tabs.

It is possible?
How can i do it?

Thank you.

Environment

  • Windows 11 64bit
  • Fiddler Classic: v5.0.20211.51073 for .NET 4.6.1

2 Answers, 1 is accepted

Sort by
0
Accepted
Hoge
Top achievements
Rank 1
Iron
answered on 04 Oct 2022, 07:26 AM

I found solution using Fiddler Script.

Run OnBoot

  • Not working Fiddler Orchestra Beta and Log
static function OnBoot() {
  // UI.RemoveView('Fiddler Orchestra Beta');
  // UI.RemoveView('Log');
  UI.RemoveView('Timeline');
  UI.RemoveView('Get Started');
  UI.RemoveView('Statistics');
  UI.RemoveView('AutoResponder');
}

Run on Command

  • Everything works successfully. But, need to type command kill_tabs.
  • After second launch Fiddler, press ↑ key & Enter will work, without type command.
static function OnExecAction(sParams: String[]): Boolean {
var sAction = sParams[0].toLowerCase();
  switch (sAction) {
    case 'kill_tabs':
      UI.RemoveView('Fiddler Orchestra Beta');
      UI.RemoveView('Log');
      UI.RemoveView('Timeline');
      UI.RemoveView('Get Started');
      UI.RemoveView('Statistics');
      UI.RemoveView('AutoResponder');
      return true;
  }
}


0
Nick Iliev
Telerik team
answered on 04 Oct 2022, 06:19 AM

Hello Hoge,

 

Currently, there is no way to persist the closed tabs. The described behavior was not published as an official feature. One of the reasons Fiddler is always restoring the original UI is that you do not have the means to restore the tabs manually (you can only explicitly show/restore Statistics, Inspectors, and Composer). 

 

Regards,
Nick Iliev
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
Fiddler Classic
Asked by
Hoge
Top achievements
Rank 1
Iron
Answers by
Hoge
Top achievements
Rank 1
Iron
Nick Iliev
Telerik team
Share this question
or