privacy-redirect/src/assets/javascripts/helpers/google-search.js

28 lines
1.1 KiB
JavaScript
Raw Normal View History

const targets = /https?:\/\/(((www|maps)\.)?(google\.).*(\/search)|search\.(google\.).*)/;
const redirects = [
{ link: "https://duckduckgo.com", q: "/" },
{ link: "https://startpage.com", q: "/search/" },
2021-03-20 11:13:23 +01:00
{ 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" },
2021-02-01 08:10:01 +01:00
{ link: "https://engine.presearch.org", q: "/search" },
2021-04-09 21:25:14 +02:00
{ link: "https://searx.silkky.cloud", q: "/" },
2021-04-10 12:26:35 +02:00
{ link: "https://search.trom.tf", q: "/" },
2021-04-16 02:45:15 +02:00
{ link: "https://whooglesearch.net", q: "/search" },
2021-03-11 10:21:56 +01:00
{ 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,
};