summaryrefslogtreecommitdiffstats
path: root/src/assets/javascripts/helpers/google-search.js
blob: c83d7c98bce50cbffbbe06aefa243316bc7261b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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.qwant.com", q: "/" },
  { link: "https://www.mojeek.com", q: "/search" },
];

export default {
  targets,
  redirects,
};