diff --git a/README.md b/README.md index eeb4d12..a76c475 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ To run the extension locally, please follow these steps: - install all dependencies with `npm install`. -- run `npm run watch:dev` to generate the `/dist` folder that can be installed into Chrome. +- run `npm start` to generate the `/dist` folder that can be installed into Chrome. On Firefox, it can be done via `web-ext` tool from within the `/dist` folder: diff --git a/package.json b/package.json index c29f7f1..29208c5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simplelogin-extension", - "version": "2.3.1", + "version": "2.3.2", "betaRev": "0", "description": "SimpleLogin Browser Extension", "author": "extension@simplelogin.io", @@ -13,7 +13,8 @@ "build:dev": "cross-env NODE_ENV=development BETA=1 webpack --hide-modules", "build-zip": "node scripts/build-zip.js", "watch": "npm run build -- --watch", - "watch:dev": "cross-env HMR=true npm run build:dev -- --watch" + "watch:dev": "cross-env HMR=true npm run build:dev -- --watch", + "start": "cross-env HMR=true npm run build:dev -- --watch" }, "dependencies": { "@fortawesome/fontawesome-svg-core": "^1.2.30", diff --git a/src/manifest.json b/src/manifest.json index 661c5c8..a02d8e6 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,6 +1,7 @@ { - "name": "SimpleLogin | Your anti-spam superhero", - "description": "Open source email alias solution", + "name": "SimpleLogin: Open-source Email Protection", + "short_name": "SimpleLogin", + "description": "Create a different email for each website to hide your real email. Guard your inbox against spams, phishing. Protect your privacy.", "version": null, "manifest_version": 2, "icons": { diff --git a/webpack.config.js b/webpack.config.js index e7aea70..0e593a4 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -144,6 +144,7 @@ if (process.env.HMR === 'true') { config.plugins = (config.plugins || []).concat([ new ExtensionReloader({ manifest: __dirname + '/src/manifest.json', + port: 19090 }), ]); }