AboutSupportDeveloper GuideVersion 45.148.100.77

Minimal UI model required to render a list of extension actions.

interface ExtensionActionListItem {
    extensionId: string;
    iconDataUrl: string;
    isVisible: boolean;
    title: string;
}

Properties

extensionId: string

Stable ID for the extension that owns this action.

iconDataUrl: string

Renderer-safe icon (data URL).

isVisible: boolean

Whether to show the action button for the current context (active tab).

title: string

Accessible label / title for the action button.