Browse Source

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

fixes #1216
tophf 4 years ago
parent
commit
6c3dd9e703
1 changed files with 1 additions and 1 deletions
  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;
 }