fix: add Firefox action manifest typings (#2217)

This commit is contained in:
Vaughn Bosu
2026-04-12 16:31:16 -04:00
committed by GitHub
parent 2a212790b6
commit a008426317
+4 -1
View File
@@ -965,10 +965,13 @@ export type UserManifest = {
} & {
// Add any Browser-specific or MV2 properties that WXT supports here
action?: Browser.runtime.ManifestV3['action'] & {
browser_style?: boolean;
default_area?: 'navbar' | 'menupanel' | 'tabstrip' | 'personaltoolbar';
theme_icons?: ThemeIcon[];
};
browser_action?: Browser.runtime.ManifestV2['browser_action'] & {
browser_style?: boolean;
default_area?: 'navbar' | 'menupanel' | 'tabstrip' | 'personaltoolbar';
theme_icons?: ThemeIcon[];
};
page_action?: Browser.runtime.ManifestV2['page_action'] & {
browser_style?: boolean;