From 3138fe56e4960e02b45672dc89f1b4ac07358819 Mon Sep 17 00:00:00 2001 From: Son NK <> Date: Wed, 9 Sep 2020 18:18:32 +0200 Subject: [PATCH 1/4] update name, description --- src/manifest.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/manifest.json b/src/manifest.json index 01b785c..52b13f5 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": { From d7b645bd28589cd232842b949cdf16322f5ede17 Mon Sep 17 00:00:00 2001 From: Son NK <> Date: Wed, 9 Sep 2020 18:18:38 +0200 Subject: [PATCH 2/4] v2.3.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c29f7f1..026f8c5 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", From 21732a3dde3cb5c258d1caa661abb9cb0c97d0ac Mon Sep 17 00:00:00 2001 From: Son NK <> Date: Fri, 11 Sep 2020 17:13:12 +0200 Subject: [PATCH 3/4] replace "watch:dev" by "start" --- README.md | 2 +- package.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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 026f8c5..29208c5 100644 --- a/package.json +++ b/package.json @@ -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", From 5dcceb2d24dff75e576deecabcfbbebf515b29ef Mon Sep 17 00:00:00 2001 From: Son NK <> Date: Fri, 11 Sep 2020 17:19:27 +0200 Subject: [PATCH 4/4] use a different port for ExtensionReloader --- webpack.config.js | 1 + 1 file changed, 1 insertion(+) 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 }), ]); }