GEO improve v2

This commit is contained in:
qingjie.du
2026-06-10 22:47:22 +09:00
parent 024ba060cc
commit 5e3001a2b5

View File

@@ -300,6 +300,54 @@
lang_map.set('ja', '管理ポータル');
i18n_messages.set('label_portal', lang_map);
lang_map = new Map();
lang_map.set('en-US', 'Cross-Platform Bookmarks');
lang_map.set('zh-CN', '跨平台书签');
lang_map.set('ja', 'クロスプラットフォームブックマーク');
i18n_messages.set('feature_bm_title', lang_map);
lang_map = new Map();
lang_map.set('en-US', 'Save key moments across ChatGPT, Claude, and Gemini in one place.');
lang_map.set('zh-CN', '在一个地方保存 ChatGPT、Claude、Gemini 的关键对话。');
lang_map.set('ja', 'ChatGPT、Claude、Gemini の重要な会話を一箇所に保存します。');
i18n_messages.set('feature_bm_1', lang_map);
lang_map = new Map();
lang_map.set('en-US', 'Organize bookmarks into custom groups with instant-undo support.');
lang_map.set('zh-CN', '将书签整理到自定义分组,支持即时撤销。');
lang_map.set('ja', 'ブックマークをカスタムグループに整理、インスタントアンドゥ対応。');
i18n_messages.set('feature_bm_2', lang_map);
lang_map = new Map();
lang_map.set('en-US', 'Jump back to any bookmarked conversation in its original context.');
lang_map.set('zh-CN', '一键跳回任何已书签的对话原始页面。');
lang_map.set('ja', 'ブックマークした会話を元のコンテキストで開きます。');
i18n_messages.set('feature_bm_3', lang_map);
lang_map = new Map();
lang_map.set('en-US', 'Prompt Editor & Privacy');
lang_map.set('zh-CN', '提示词编辑与隐私保护');
lang_map.set('ja', 'プロンプトエディターとプライバシー');
i18n_messages.set('feature_pe_title', lang_map);
lang_map = new Map();
lang_map.set('en-US', 'Manage reusable prompt templates with the built-in Prompt Editor.');
lang_map.set('zh-CN', '使用内置的提示词编辑器管理可复用的模板。');
lang_map.set('ja', '内蔵プロンプトエディターで再利用可能なテンプレートを管理。');
i18n_messages.set('feature_pe_1', lang_map);
lang_map = new Map();
lang_map.set('en-US', 'Auto-redact sensitive info (API keys, passwords, tokens) before sending.');
lang_map.set('zh-CN', '发送前自动脱敏 API 密钥、密码、令牌等敏感信息。');
lang_map.set('ja', '送信前にAPIキーやパスワードなどの機密情報を自動秘匿化。');
i18n_messages.set('feature_pe_2', lang_map);
lang_map = new Map();
lang_map.set('en-US', 'Define custom redaction rules to safeguard proprietary data.');
lang_map.set('zh-CN', '定义自定义脱敏规则保护专有数据。');
lang_map.set('ja', 'カスタム秘匿化ルールで機密データを保護。');
i18n_messages.set('feature_pe_3', lang_map);
window.onload = async function() {
setI18NText(i18n_messages);
initRevealAnimations();
@@ -460,6 +508,30 @@
</ul>
</div>
</article>
<article class="card feature-card reveal" data-animate>
<div class="card-body">
<div class="feature-icon">🔖</div>
<h3 class="card-title" id="feature_bm_title">Cross-Platform Bookmarks</h3>
<ul>
<li id="feature_bm_1">Save key moments across ChatGPT, Claude, and Gemini in one place.</li>
<li id="feature_bm_2">Organize bookmarks into custom groups with instant-undo support.</li>
<li id="feature_bm_3">Jump back to any bookmarked conversation in its original context.</li>
</ul>
</div>
</article>
<article class="card feature-card reveal" data-animate>
<div class="card-body">
<div class="feature-icon">✏️</div>
<h3 class="card-title" id="feature_pe_title">Prompt Editor &amp; Privacy</h3>
<ul>
<li id="feature_pe_1">Manage reusable prompt templates with the built-in Prompt Editor.</li>
<li id="feature_pe_2">Auto-redact sensitive info (API keys, passwords, tokens) before sending.</li>
<li id="feature_pe_3">Define custom redaction rules to safeguard proprietary data.</li>
</ul>
</div>
</article>
</div>
<hr class="my-1" />