From 1a0e640e3c90f170365de9fa13f97cd2387ce3d5 Mon Sep 17 00:00:00 2001 From: ManeraKai Date: Sun, 19 Nov 2023 17:42:01 +0300 Subject: Fixed a bug in upgrading popupServices settings https://github.com/libredirect/browser_extension/issues/829 --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index 76eb63eb..139d4773 100644 --- a/package.json +++ b/package.json @@ -23,8 +23,8 @@ }, "homepage": "https://libredirect.github.io", "devDependencies": { - "web-ext": "^7.2.0", - "pug-cli": "^1.0.0-alpha6" + "pug-cli": "^1.0.0-alpha6", + "web-ext": "^7.2.0" }, "webExt": { "sourceDir": "./src/", @@ -35,4 +35,4 @@ "overwriteDest": true } } -} \ No newline at end of file +} -- cgit 1.4.1 From 51ffdebd1250323d3c06058af14f3812dd188cdf Mon Sep 17 00:00:00 2001 From: ManeraKai Date: Fri, 8 Dec 2023 22:49:02 +0300 Subject: Added superuser.com to AnonymousOverflow https://github.com/libredirect/browser_extension/issues/868 --- package.json | 2 +- src/config.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index 139d4773..d388da1f 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ }, "scripts": { "start": "web-ext run", - "start_ar": "web-ext run --firefox=/home/esmail/Downloads/ar/firefox/firefox --pref font.language.group=ar", + "start-nightly": "web-ext run --firefox=/home/manerakai/Downloads/firefox/firefox", "build": "web-ext build", "test": "web-ext lint", "html": "pug --basedir ./ --obj ./src/config.json src/pages/options/index.pug --out src/pages/options/ && pug --basedir ./ --obj ./src/config.json src/pages/popup/popup.pug --out src/pages/popup/" diff --git a/src/config.json b/src/config.json index f17ba8f5..52358170 100644 --- a/src/config.json +++ b/src/config.json @@ -710,7 +710,8 @@ }, "targets": [ "^https?:\\/{2}(www\\.)?stackoverflow\\.com\\/", - "^https?:\\/{2}([a-zA-Z0-9-]+\\.)?stackexchange\\.com\\/" + "^https?:\\/{2}([a-zA-Z0-9-]+\\.)?stackexchange\\.com\\/", + "^https?:\\/{2}(www\\.)?superuser\\.com\\/" ], "name": "Stack Overflow", "options": { -- cgit 1.4.1