Interface ContextMenuItemsProvider


public interface ContextMenuItemsProvider
This interface allows extensions to implement and register a provider for custom context menu items.
  • Method Summary

    Modifier and Type
    Method
    Description
    Invoked by Burp Suite when the user requests a context menu anywhere in the user interface.
  • Method Details

    • provideMenuItems

      List<Component> provideMenuItems(ContextMenuEvent event)
      Invoked by Burp Suite when the user requests a context menu anywhere in the user interface. Extensions should return null from this method, to indicate that no menu items are required.
      Parameters:
      event - This object can be queried to find out about HTTP request/responses or issues that are associated with the context menu invocation.
      Returns:
      A list of custom menu items (which may include sub-menus, checkbox menu items, etc.) that should be displayed.