diff options
author | ManeraKai <manerakai@protonmail.com> | 2024-08-18 20:31:56 +0300 |
---|---|---|
committer | ManeraKai <manerakai@protonmail.com> | 2024-08-18 20:31:56 +0300 |
commit | b8539e9260e6e6a9c74b70ba952d05b53a6d7efe (patch) | |
tree | 88e06aa8ff95d1b3bd1d10a6cd839d3f82b94fd3 /src/config.json | |
parent | Fixed settings reset on ExportSync https://github.com/libredirect/browser_ext... (diff) | |
download | libredirect-b8539e9260e6e6a9c74b70ba952d05b53a6d7efe.zip |
Added Redirect Google option https://github.com/libredirect/browser_extension/issues/928
Diffstat (limited to 'src/config.json')
-rw-r--r-- | src/config.json | 35 |
1 files changed, 29 insertions, 6 deletions
diff --git a/src/config.json b/src/config.json index 16bd9076..7a300125 100644 --- a/src/config.json +++ b/src/config.json @@ -993,38 +993,61 @@ "name": "SearXNG", "instanceList": true, "url": "https://github.com/searxng/searxng", - "localhost": true + "localhost": true, + "excludeTargets": [ + 2, + 3 + ] }, "searx": { "name": "SearX", "instanceList": true, - "url": "https://searx.github.io/searx/" + "url": "https://searx.github.io/searx/", + "excludeTargets": [ + 2, + 3 + ] }, "whoogle": { "name": "Whoogle", "instanceList": true, - "url": "https://benbusby.com/projects/whoogle-search/" + "url": "https://benbusby.com/projects/whoogle-search/", + "excludeTargets": [ + 2, + 3 + ] }, "librey": { "name": "LibreY", "instanceList": true, - "url": "https://github.com/Ahwxorg/librey/" + "url": "https://github.com/Ahwxorg/librey/", + "excludeTargets": [ + 2, + 3 + ] }, "4get": { "name": "4get", "instanceList": true, - "url": "https://git.lolcat.ca/lolcat/4get" + "url": "https://git.lolcat.ca/lolcat/4get", + "excludeTargets": [ + 2, + 3 + ] } }, "targets": [ "^https?:\\/{2}search\\.libredirect\\.invalid", - "^https?:\\/{2}libredirect\\.github\\.io\\/\\?q" + "^https?:\\/{2}libredirect\\.github\\.io\\/\\?q", + "^https?:\\/{2}(www\\.)?google\\.com", + "^https?:\\/{2}(www\\.)?bing\\.com" ], "name": "Search", "options": { "enabled": false, "frontend": "searxng", "unsupportedUrls": "bypass", + "redirectGoogle": false, "instance": "public" }, "imageType": "svgMono", |