浏览代码

fix: add "BETA" to beta's icon tooltip

fixes #1216
tophf 4 年之前
父节点
当前提交
6c3dd9e703
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      scripts/manifest-helper.js

+ 1 - 1
scripts/manifest-helper.js

@@ -16,7 +16,7 @@ async function buildManifest() {
   }
   if (isBeta()) {
     // Do not support i18n in beta version
-    data.name = 'Violentmonkey BETA';
+    data.name = data.browser_action.default_title = 'Violentmonkey BETA';
   }
   return data;
 }