From 86775eacbd6a9d6f018734e38534820d8b3ae99c Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 27 Jun 2026 03:50:57 +0000 Subject: [PATCH] fix: correct manifest paths for dist/ load context --- agrifine-extension/manifest.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/agrifine-extension/manifest.json b/agrifine-extension/manifest.json index a24c3d3..54b3235 100644 --- a/agrifine-extension/manifest.json +++ b/agrifine-extension/manifest.json @@ -14,18 +14,18 @@ "" ], "background": { - "service_worker": "dist/background.js", + "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [""], - "js": ["dist/content.js"], + "js": ["content.js"], "run_at": "document_idle" } ], "side_panel": { - "default_path": "dist/sidebar.html" + "default_path": "sidebar.html" }, "action": { "default_title": "Open Agrifine",