mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-18 23:36:00 +00:00
### TL;DR Redesigned the browser extension UI with a dark theme and improved the Twitter bookmarks import experience with a new onboarding flow. ### What changed? - Added a new `RightArrow` icon component for UI navigation - Completely redesigned the popup UI with a dark theme and improved layout - Enhanced Twitter bookmarks import functionality: - Added an onboarding toast that appears the first time a user visits the bookmarks page - Implemented a persistent import intent system that automatically opens the import modal when navigating to the bookmarks page - Created a progress toast to show import status - Improved folder import UI - Updated the extension icon and added a new logo SVG - Improved the project selection modal with better styling
35 lines
862 B
TypeScript
35 lines
862 B
TypeScript
import tailwindcss from "@tailwindcss/vite"
|
|
import { defineConfig, type WxtViteConfig } from "wxt"
|
|
|
|
// See https://wxt.dev/api/config.html
|
|
export default defineConfig({
|
|
modules: ["@wxt-dev/module-react"],
|
|
vite: () =>
|
|
({
|
|
plugins: [tailwindcss()],
|
|
}) as WxtViteConfig,
|
|
manifest: {
|
|
name: "supermemory",
|
|
homepage_url: "https://supermemory.ai",
|
|
version: "6.1.0",
|
|
permissions: ["contextMenus", "storage", "activeTab", "webRequest", "tabs"],
|
|
host_permissions: [
|
|
"*://x.com/*",
|
|
"*://twitter.com/*",
|
|
"*://supermemory.ai/*",
|
|
"*://api.supermemory.ai/*",
|
|
"*://chatgpt.com/*",
|
|
"*://chat.openai.com/*",
|
|
"https://*.posthog.com/*",
|
|
],
|
|
web_accessible_resources: [
|
|
{
|
|
resources: ["icon-16.png", "fonts/*.ttf"],
|
|
matches: ["<all_urls>"],
|
|
},
|
|
],
|
|
},
|
|
webExt: {
|
|
chromiumArgs: ["--user-data-dir=./.wxt/chrome-data"],
|
|
},
|
|
})
|