-
{error}
-
-
Having trouble?
-
-
-
•
-
- Download
-
-
+
+
{errorTitle}
+
{errorDescription}
+
{error}
+ {isClientConnectionError ? (
+
+
+
Client installed
+
+ Start VidBee and keep it running, then we will retry automatically.
+
+
+
+
+
Need the app?
+
+ Download VidBee once, install it, then come back here to try again.
+
+
+ Download VidBee
+
+
+
+ ) : (
+
+
Try again
+
+ {isInvalidPageError
+ ? 'Open a supported video page, then retry.'
+ : 'Retry after a moment.'}
+
+
+
+ )}
)}
diff --git a/extension/package.json b/extension/package.json
index 980316c..bfe81ef 100644
--- a/extension/package.json
+++ b/extension/package.json
@@ -1,8 +1,8 @@
{
- "name": "wxt-react-starter",
+ "name": "vidbee-extension",
"description": "manifest.json description",
"private": true,
- "version": "0.0.0",
+ "version": "0.0.1",
"type": "module",
"scripts": {
"dev": "wxt",
diff --git a/extension/public/_locales/en/messages.json b/extension/public/_locales/en/messages.json
index 331f65c..51ba0d8 100644
--- a/extension/public/_locales/en/messages.json
+++ b/extension/public/_locales/en/messages.json
@@ -1,4 +1,10 @@
{
+ "extensionName": {
+ "message": "VidBee Video Downloader"
+ },
+ "extensionDescription": {
+ "message": "Download videos from over 1,000 websites with VidBee."
+ },
"downloadWithVidBee": {
"message": "Download with VidBee"
},
diff --git a/extension/wxt.config.ts b/extension/wxt.config.ts
index 12b77c1..9b90432 100644
--- a/extension/wxt.config.ts
+++ b/extension/wxt.config.ts
@@ -4,6 +4,8 @@ import { defineConfig } from 'wxt'
export default defineConfig({
modules: ['@wxt-dev/module-react'],
manifest: {
+ name: '__MSG_extensionName__',
+ description: '__MSG_extensionDescription__',
default_locale: 'en',
host_permissions: ['http://127.0.0.1/*'],
permissions: ['activeTab', 'storage']