From 03e9b3b4617a433e98d7b9596b5e1e950d820105 Mon Sep 17 00:00:00 2001 From: Tanner <88640606+Codetrauma@users.noreply.github.com> Date: Tue, 15 Oct 2024 07:22:44 -0700 Subject: [PATCH] Update src/utils/misc.ts Co-authored-by: Hendrik Eeckhaut --- src/utils/misc.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/misc.ts b/src/utils/misc.ts index 83a6fedf..57d59fe2 100644 --- a/src/utils/misc.ts +++ b/src/utils/misc.ts @@ -333,8 +333,8 @@ export type PluginConfig = { hostFunctions?: string[]; // Host functions that the plugin will have access to cookies?: string[]; // Cookies the plugin will have access to, cached by the extension from specified hosts (optional) headers?: string[]; // Headers the plugin will have access to, cached by the extension from specified hosts (optional) - localStorage: string[]; // LocalStorage the plugin will have access to, cached by the extension from specified hosts (optional) - sessionStorage: string[]; // SessionStorage the plugin will have access to, cached by the extension from specified hosts (optional) + localStorage?: string[]; // LocalStorage the plugin will have access to, cached by the extension from specified hosts (optional) + sessionStorage?: string[]; // SessionStorage the plugin will have access to, cached by the extension from specified hosts (optional) requests: { method: string; url: string }[]; // List of requests that the plugin is allowed to make notaryUrls?: string[]; // List of notary services that the plugin is allowed to use (optional) proxyUrls?: string[]; // List of websocket proxies that the plugin is allowed to use (optional)