How to create similar debugging Tab to what the Chronon plugin does?
已回答
So, the Chronon plugin records the execution of a program and saves it to a file....which can be opened later on and the execution history is shown in a Debugger-like Tab:

I am developing a plugin where I need to show a custom Tab just like that where the Stack Frames are shown on the left hand side and the variables on the right hand side...How to achieve this?
请先登录再写评论。
You can use UI Inspector to locate underlying UI components and see if they fit your use case https://www.jetbrains.org/intellij/sdk/docs/reference_guide/internal_actions/internal_ui_inspector.html
Yann Cebron Thank you. I didn't know this tool existed. It looks amazing and very helpful.