aboutsummaryrefslogtreecommitdiff
path: root/apps/extension
diff options
context:
space:
mode:
authorKush Thaker <[email protected]>2024-08-09 18:50:05 +0530
committerGitHub <[email protected]>2024-08-09 18:50:05 +0530
commited5ed419e184c56f7f09deb3eb733a8bbc1dc6c3 (patch)
treeee3e74b4e2b9ceb806625622b64e224c63b0c388 /apps/extension
parentremove unwanted console logs (diff)
parentMerge pull request #236 from CodeTorso/queue (diff)
downloadsupermemory-kush/be-queue-fixes.tar.xz
supermemory-kush/be-queue-fixes.zip
Merge branch 'main' into kush/be-queue-fixeskush/be-queue-fixes
Diffstat (limited to 'apps/extension')
-rw-r--r--apps/extension/content/ContentApp.tsx12
-rw-r--r--apps/extension/manifest.json2
-rw-r--r--apps/extension/package.json1
3 files changed, 14 insertions, 1 deletions
diff --git a/apps/extension/content/ContentApp.tsx b/apps/extension/content/ContentApp.tsx
index a510a77c..fb28925d 100644
--- a/apps/extension/content/ContentApp.tsx
+++ b/apps/extension/content/ContentApp.tsx
@@ -229,6 +229,18 @@ export default function ContentApp({
if (rep.status === 200) {
toast({
title: "Saved to supermemory.ai",
+ action: (
+ <button
+ onClick={() => {
+ window.open(
+ `https://supermemory.ai`,
+ "_blank",
+ );
+ }}
+ >
+ View
+ </button>
+ ),
});
} else {
toast({
diff --git a/apps/extension/manifest.json b/apps/extension/manifest.json
index 7f998412..51040f89 100644
--- a/apps/extension/manifest.json
+++ b/apps/extension/manifest.json
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"$schema": "https://json.schemastore.org/chrome-manifest",
- "version": "2.63.1",
+ "version": "2.63.2",
"name": "supermemory",
"description": "An extension for https://supermemory.ai - an AI hub for all your bookmarks.",
"background": {
diff --git a/apps/extension/package.json b/apps/extension/package.json
index e028d680..818fd2d6 100644
--- a/apps/extension/package.json
+++ b/apps/extension/package.json
@@ -1,5 +1,6 @@
{
"devDependencies": {
+ "@extension-create/develop": "^1.8.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@webpack-cli/generators": "^3.0.7",