diff --git a/src/plugin.tsx b/src/plugin.tsx index d51c3f4..7d9d020 100644 --- a/src/plugin.tsx +++ b/src/plugin.tsx @@ -31,6 +31,7 @@ export interface ServerAPI { callServerMethod(methodName: string, args: TArgs): Promise>; fetchNoCors(url: string, request: RequestInfo): Promise>; executeInTab(tab: string, runAsync: boolean, code: string): Promise; + injectCssIntoTab(tab: string, style: string): Promise>; removeCssFromTab(tab: string, cssId: string): Promise; }