From 8c51daa071e8ed133a6d139384d078917667ee94 Mon Sep 17 00:00:00 2001 From: Mark Agib <80441909+MarkAppprogrammer@users.noreply.github.com> Date: Wed, 25 Sep 2024 21:37:20 -0700 Subject: [PATCH 1/3] Update manifest.json added html page --- apps/extension/manifest.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/extension/manifest.json b/apps/extension/manifest.json index ff3db00..2fd21ed 100644 --- a/apps/extension/manifest.json +++ b/apps/extension/manifest.json @@ -24,5 +24,8 @@ } ], "permissions": ["webRequest", "storage", "contextMenus"], - "host_permissions": [""] + "host_permissions": [""], + "action": [ + "default_popup": "home.html" + ] } From d850eacb2177dcef5360ded23407f819df4444cf Mon Sep 17 00:00:00 2001 From: Mark Agib <80441909+MarkAppprogrammer@users.noreply.github.com> Date: Wed, 25 Sep 2024 21:39:11 -0700 Subject: [PATCH 2/3] Create home.html added action --- apps/extension/home.html | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 apps/extension/home.html diff --git a/apps/extension/home.html b/apps/extension/home.html new file mode 100644 index 0000000..4376b3e --- /dev/null +++ b/apps/extension/home.html @@ -0,0 +1,9 @@ + + + + + From ab96eb2911b38b6732b92c0dfdf051f1ec0f0b5a Mon Sep 17 00:00:00 2001 From: Mark Agib <80441909+MarkAppprogrammer@users.noreply.github.com> Date: Thu, 26 Sep 2024 23:55:28 -0700 Subject: [PATCH 3/3] Update manifest.json fixed the #supermemory-extension-host and added curly brackets for "action" --- apps/extension/manifest.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/apps/extension/manifest.json b/apps/extension/manifest.json index 2fd21ed..cf80a67 100644 --- a/apps/extension/manifest.json +++ b/apps/extension/manifest.json @@ -19,13 +19,16 @@ }, "web_accessible_resources": [ { - "resources": ["public/*"], + "resources": [ + "public/*", + "content/*" + ], "matches": [""] } ], "permissions": ["webRequest", "storage", "contextMenus"], "host_permissions": [""], - "action": [ + "action": { "default_popup": "home.html" - ] + } }