Merge branch 'master' of github.com:simple-login/browser-extension

This commit is contained in:
Othmane AJDOR
2020-09-11 17:52:26 +02:00
4 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -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:
+3 -2
View File
@@ -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",
+3 -2
View File
@@ -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": {
+1
View File
@@ -144,6 +144,7 @@ if (process.env.HMR === 'true') {
config.plugins = (config.plugins || []).concat([
new ExtensionReloader({
manifest: __dirname + '/src/manifest.json',
port: 19090
}),
]);
}