From 3a659347be398ac732ca4f5ff2e2cd664636ab25 Mon Sep 17 00:00:00 2001 From: Sin-Kang Date: Fri, 7 Aug 2026 23:39:53 +0900 Subject: [PATCH] fix: manifest description over CWS 132-char limit (was 175) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Chrome Web Store enforces the 132-character cap on the manifest's own description field, not just the listing's short description — upload was rejected. Trimmed to 128 chars (dropped the long layout enumeration; the full list lives in the store listing copy). --- extension/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/manifest.json b/extension/manifest.json index c3ddd0b..6da45ce 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "kokey — wrong-layout text fixer", "version": "0.6.0", - "description": "Fix text typed with the wrong keyboard layout — 한글, русский, עברית, ελληνικά, ไทย, العربية, українська, ქართული ↔ QWERTY. All processing is local; nothing leaves your browser.", + "description": "Fix text typed with the wrong keyboard layout — 한글, русский, עברית, ไทย ↔ QWERTY. Right-click or Alt+K. Everything runs locally.", "permissions": ["contextMenus"], "background": { "service_worker": "background.js",