@1llum1n4t1/cws-mcp 1.4.2 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +6 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -530,22 +530,22 @@ server.registerTool("update-metadata-ui", { description: descriptions["update-me
|
|
|
530
530
|
throw new Error(`Not signed in to Chrome Web Store dashboard. Open once with headless=false and sign in. Profile dir: ${DASHBOARD_PROFILE_DIR}`);
|
|
531
531
|
}
|
|
532
532
|
if (title?.trim()) {
|
|
533
|
-
await fillTextFieldByLabel(page, ["Title", "제목", "Name", "이름"], title.trim());
|
|
533
|
+
await fillTextFieldByLabel(page, ["Title", "제목", "Name", "이름", "タイトル", "名前", "拡張機能の名前"], title.trim());
|
|
534
534
|
}
|
|
535
535
|
if (summary?.trim()) {
|
|
536
|
-
await fillTextFieldByLabel(page, ["Summary", "Short description", "요약", "짧은 설명"], summary.trim());
|
|
536
|
+
await fillTextFieldByLabel(page, ["Summary", "Short description", "요약", "짧은 설명", "概要", "要約", "短い説明", "簡単な説明"], summary.trim());
|
|
537
537
|
}
|
|
538
538
|
if (description?.trim()) {
|
|
539
|
-
await fillTextFieldByLabel(page, ["Description", "설명"], description.trim());
|
|
539
|
+
await fillTextFieldByLabel(page, ["Description", "설명", "詳細な説明", "説明"], description.trim());
|
|
540
540
|
}
|
|
541
541
|
if (homepageUrl?.trim()) {
|
|
542
|
-
await fillTextFieldByLabel(page, ["Homepage", "홈페이지"], homepageUrl.trim());
|
|
542
|
+
await fillTextFieldByLabel(page, ["Homepage", "홈페이지", "ホームページ", "ウェブサイト", "公式サイト"], homepageUrl.trim());
|
|
543
543
|
}
|
|
544
544
|
if (supportUrl?.trim()) {
|
|
545
|
-
await fillTextFieldByLabel(page, ["Support", "지원", "Help", "도움말"], supportUrl.trim());
|
|
545
|
+
await fillTextFieldByLabel(page, ["Support", "지원", "Help", "도움말", "サポート", "ヘルプ", "サポート URL", "問い合わせ"], supportUrl.trim());
|
|
546
546
|
}
|
|
547
547
|
if (storeIconPath?.trim()) {
|
|
548
|
-
await uploadFileBySectionLabel(page, ["Store icon", "스토어 아이콘", "아이콘", "Icon"], storeIconPath.trim());
|
|
548
|
+
await uploadFileBySectionLabel(page, ["Store icon", "스토어 아이콘", "아이콘", "Icon", "ストア アイコン", "ストアアイコン", "アイコン"], storeIconPath.trim());
|
|
549
549
|
}
|
|
550
550
|
if (category?.trim()) {
|
|
551
551
|
const categoryCombo = page.getByRole("combobox", { name: /category|카테고리/i }).first();
|