From d9870b2dc84e74a140b0e63e3e498f71874ef566 Mon Sep 17 00:00:00 2001 From: Hideki Ikemoto Date: Mon, 10 Oct 2022 07:48:49 +0900 Subject: [PATCH] package: set beta version name --- scripts/make_manifest.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/make_manifest.ts b/scripts/make_manifest.ts index f4ac1cee..9749b004 100644 --- a/scripts/make_manifest.ts +++ b/scripts/make_manifest.ts @@ -22,7 +22,9 @@ if (branch) { const version = manifest.version; const now = format(new Date(), "yyyyMMdd-HHmm"); manifest.version_name = `${version}-snapshot(${now})`; + manifest.name = "Gossip Site Blocker(beta)"; firefoxManifest.version_name = `${version}-snapshot(${now})`; + firefoxManifest.name = "Gossip Site Blocker(beta)"; } const manifestWriteJsonPath = distDir + "/manifest.json";