summaryrefslogtreecommitdiff
path: root/data/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}/assets/javascripts/helpers/google-search.js
diff options
context:
space:
mode:
authorRuben Rodriguez <ruben@trisquel.info>2022-09-08 20:18:54 -0400
committerRuben Rodriguez <ruben@trisquel.info>2022-09-08 20:18:54 -0400
commit5da28b0f8771834ae208d61431d632875e9f8e7d (patch)
tree688ecaff26197bad8abde617b4947b11d617309e /data/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}/assets/javascripts/helpers/google-search.js
parent4a87716686104266a9cccc2d83cc249e312f3673 (diff)
Updated extensions:
* Upgraded Privacy Redirect to 1.1.49 and configured to use the 10 most reliable invidious instances * Removed ViewTube * Added torproxy@icecat.gnu based on 'Proxy toggle' extension * Added jShelter 0.11.1 * Upgraded LibreJS to 7.21.0 * Upgraded HTTPS Everywhere to 2021.7.13 * Upgraded SubmitMe to 1.9
Diffstat (limited to 'data/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}/assets/javascripts/helpers/google-search.js')
-rw-r--r--data/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}/assets/javascripts/helpers/google-search.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/data/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}/assets/javascripts/helpers/google-search.js b/data/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}/assets/javascripts/helpers/google-search.js
new file mode 100644
index 0000000..8bd6a10
--- /dev/null
+++ b/data/extensions/{b7f9d2cd-d772-4302-8c3f-eb941af36f76}/assets/javascripts/helpers/google-search.js
@@ -0,0 +1,27 @@
+const targets = /https?:\/\/(((www|maps)\.)?(google\.).*(\/search)|search\.(google\.).*)/;
+const redirects = [
+ { link: "https://duckduckgo.com", q: "/" },
+ { link: "https://startpage.com", q: "/search/" },
+ { link: "https://www.ecosia.org", q: "/search" },
+ { link: "https://www.qwant.com", q: "/" },
+ { link: "https://www.mojeek.com", q: "/search" },
+ { link: "https://search.snopyta.org", q: "/" },
+ { link: "https://searx.info", q: "/" },
+ { link: "https://searx.be", q: "/" },
+ { link: "https://search.disroot.org", q: "/" },
+ { link: "https://searx.tuxcloud.net", q: "/" },
+ { link: "https://searx.ninja", q: "/" },
+ { link: "https://tromland.org/searx", q: "/search" },
+ { link: "https://engine.presearch.org", q: "/search" },
+ { link: "https://searx.silkky.cloud", q: "/" },
+ { link: "https://search.trom.tf", q: "/" },
+ { link: "https://whooglesearch.net", q: "/search" },
+ { link: "https://whoogle.sdf.org", q: "/search" },
+ { link: "https://whoogle.himiko.cloud", q: "/search" },
+ { link: "https://whoogle-search.zeet.app", q: "/search" },
+];
+
+export default {
+ targets,
+ redirects,
+};