UNPKG

extension-develop

Version:
12 lines (11 loc) 299 B
export type ChromeManifest = Partial<chrome.runtime.ManifestV2> & Partial<chrome.runtime.ManifestV3> & { browser_action?: { theme_icons?: ThemeIcon[]; }; }; export type Manifest = ChromeManifest; export interface ThemeIcon { light: string; dark: string; size?: number; }