mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-06 08:16:03 +00:00
added wxt naming things
This commit is contained in:
parent
70bbfe6171
commit
c7f21885b2
3 changed files with 12 additions and 11 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Supermemory",
|
||||
"description": "Supermemory Browser Extension",
|
||||
"name": "supermemory-browser-extension",
|
||||
"description": "An extension for https://app.supermemory.ai - an AI hub for all your knowledge.",
|
||||
"private": true,
|
||||
"version": "0.0.1",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -4,29 +4,30 @@ import { defineConfig } from 'wxt';
|
|||
export default defineConfig({
|
||||
modules: ['@wxt-dev/module-react'],
|
||||
manifest: {
|
||||
name: 'Supermemory',
|
||||
homepage_url: 'https://supermemory.ai',
|
||||
permissions: [
|
||||
'contextMenus',
|
||||
'storage',
|
||||
'scripting',
|
||||
'contextMenus',
|
||||
'storage',
|
||||
'scripting',
|
||||
'activeTab',
|
||||
'webRequest',
|
||||
'tabs'
|
||||
'tabs',
|
||||
],
|
||||
host_permissions: [
|
||||
'*://x.com/*',
|
||||
'*://twitter.com/*',
|
||||
'*://supermemory.ai/*',
|
||||
'*://api.supermemory.ai/*'
|
||||
'*://api.supermemory.ai/*',
|
||||
],
|
||||
web_accessible_resources: [
|
||||
{
|
||||
resources: ['icon-16.png', 'light-mode-icon.png', 'dark-mode-icon.png'],
|
||||
matches: ['<all_urls>']
|
||||
}
|
||||
matches: ['<all_urls>'],
|
||||
},
|
||||
],
|
||||
},
|
||||
webExt: {
|
||||
disabled: true,
|
||||
chromiumArgs: ['--user-data-dir=./.wxt/chrome-data'],
|
||||
},
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "supermemory-app",
|
||||
"name": "supermemory",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"build": "turbo run build",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue