mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-06 08:16:03 +00:00
updated naming
This commit is contained in:
parent
0c432af694
commit
2d1f4f233d
7 changed files with 14 additions and 14 deletions
|
|
@ -1 +1 @@
|
|||
## Supermemory Browser Extension
|
||||
## supermemory Browser Extension
|
||||
|
|
@ -29,7 +29,7 @@ export default defineBackground(() => {
|
|||
browser.runtime.onInstalled.addListener((details) => {
|
||||
browser.contextMenus.create({
|
||||
id: CONTEXT_MENU_IDS.SAVE_TO_SUPERMEMORY,
|
||||
title: "Save to Supermemory",
|
||||
title: "Save to supermemory",
|
||||
contexts: ["selection", "page", "link"],
|
||||
});
|
||||
|
||||
|
|
@ -97,7 +97,7 @@ export default defineBackground(() => {
|
|||
};
|
||||
|
||||
/**
|
||||
* Save memory to Supermemory API
|
||||
* Save memory to supermemory API
|
||||
*/
|
||||
const saveMemoryToSupermemory = async (
|
||||
data: MemoryData,
|
||||
|
|
|
|||
|
|
@ -153,8 +153,8 @@ export default defineContentScript({
|
|||
|
||||
supermemoryButton.innerHTML = `
|
||||
<div class="flex items-center justify-center gap-2">
|
||||
<img src="${iconUrl}" alt="Supermemory" style="width: 16px; height: 16px; flex-shrink: 0; border-radius: 2px;" />
|
||||
Save to Supermemory
|
||||
<img src="${iconUrl}" alt="supermemory" style="width: 16px; height: 16px; flex-shrink: 0; border-radius: 2px;" />
|
||||
Save to supermemory
|
||||
</div>
|
||||
`;
|
||||
|
||||
|
|
@ -232,7 +232,7 @@ export default defineContentScript({
|
|||
DOMUtils.showToast("error");
|
||||
}
|
||||
} catch (error) {
|
||||
console.error("Error saving memories to Supermemory:", error);
|
||||
console.error("Error saving memories to supermemory:", error);
|
||||
DOMUtils.showToast("error");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -136,8 +136,8 @@ function App() {
|
|||
return (
|
||||
<div className="popup-container">
|
||||
<div className="header">
|
||||
<img src="/icon-48.png" alt="Supermemory" className="logo" />
|
||||
<h1>Supermemory</h1>
|
||||
<img src="/icon-48.png" alt="supermemory" className="logo" />
|
||||
<h1>supermemory</h1>
|
||||
</div>
|
||||
<div className="content">
|
||||
<div>Loading...</div>
|
||||
|
|
@ -151,7 +151,7 @@ function App() {
|
|||
<div className="header">
|
||||
<img
|
||||
src="/logo-trademark.svg"
|
||||
alt="Supermemory"
|
||||
alt="supermemory"
|
||||
className="logo"
|
||||
style={{ width: "80%", height: "32px" }}
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ function Welcome() {
|
|||
<div className="welcome-header">
|
||||
<img
|
||||
src="/logo-trademark.svg"
|
||||
alt="Supermemory"
|
||||
alt="supermemory"
|
||||
className="welcome-logo"
|
||||
/>
|
||||
<p className="welcome-subtitle">
|
||||
|
|
@ -17,7 +17,7 @@ function Welcome() {
|
|||
|
||||
{/* Features Section */}
|
||||
<div className="welcome-features">
|
||||
<h2 className="features-title">What can you do with Supermemory?</h2>
|
||||
<h2 className="features-title">What can you do with supermemory?</h2>
|
||||
|
||||
<div className="features-grid">
|
||||
<div className="feature-card">
|
||||
|
|
@ -67,7 +67,7 @@ function Welcome() {
|
|||
<div className="step-number">1</div>
|
||||
<div className="step-content">
|
||||
<h3>Login to Your Account</h3>
|
||||
<p>Connect your Supermemory account to start saving content</p>
|
||||
<p>Connect your supermemory account to start saving content</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/icon-16.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Welcome to Supermemory</title>
|
||||
<title>Welcome to supermemory</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
|
|
|
|||
|
|
@ -246,7 +246,7 @@ export function createTwitterImportUI(
|
|||
: `
|
||||
<div style="text-align: center;">
|
||||
<p style="color: #536471; font-size: 14px; margin: 0 0 12px 0;">
|
||||
Please sign in to Supermemory first
|
||||
Please sign in to supermemory first
|
||||
</p>
|
||||
<button id="${ELEMENT_IDS.TWITTER_SIGNIN_BTN}" style="background: #1d9bf0; color: white; border: none; border-radius: 20px; padding: 8px 16px; cursor: pointer; font-size: 14px; font-weight: 500;">
|
||||
Sign In
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue