From 8b81078429b0a0760b8342d2ca52a1f73c969514 Mon Sep 17 00:00:00 2001 From: AvaLilac Date: Sun, 22 Mar 2026 18:52:44 -0400 Subject: [PATCH] Update main.ts Signed-off-by: AvaLilac --- src/main.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.ts b/src/main.ts index aea055f..8afafb2 100644 --- a/src/main.ts +++ b/src/main.ts @@ -41,6 +41,10 @@ const loadInject = () => { const injectCode = fs.readFileSync(injectPath, "utf8"); await mainWindow.webContents.executeJavaScript(injectCode, true); + const localPluginsPath = path.join(__dirname, "LocalPlugins.js"); + const localPluginsCode = fs.readFileSync(localPluginsPath, "utf8"); + await mainWindow.webContents.executeJavaScript(localPluginsCode, true); + const categoryPath = path.join(__dirname, "aviaclientcategory.js"); const categoryCode = fs.readFileSync(categoryPath, "utf8"); await mainWindow.webContents.executeJavaScript(categoryCode, true);