Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/extension/locales/en.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# openpicker UI strings (source locale). Other locales mirror these keys.
# Brand names (openpicker, Usertour) and example/regex values stay in English.

# Shown in chrome://extensions and the Web Store (the name stays "openpicker").
# Store/extension description (the manifest name lives in wxt.config.ts, not here).
extDescription: Open-source CSS element picker.

brandTagline: Pick an element, get its selector
Expand Down
8 changes: 5 additions & 3 deletions packages/extension/wxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ export default defineConfig({
},
}),
manifest: {
name: "openpicker",
// Localized via _locales (generated from locales/*.yml). The name stays
// "openpicker" (brand); only the description is translated per locale.
// Chrome Web Store title + chrome://extensions name (the store shows the manifest
// name verbatim). Capitalized + descriptive for store discoverability; the brand
// elsewhere (UI wordmark, npm, docs) stays lowercase "openpicker". Not localized.
name: "OpenPicker - Pick CSS Selectors on Any Page",
// Only the description is translated per locale (via _locales from locales/*.yml).
description: "__MSG_extDescription__",
// Locale to fall back to; per-locale UI strings live in locales/*.yml and are
// generated into _locales by @wxt-dev/i18n. The language follows the browser.
Expand Down
Loading