Skip to content

Instantly share code, notes, and snippets.

@johnste
Created June 14, 2018 07:28
Show Gist options
  • Save johnste/0e15e2c0e6dbe636e560ff202bea4367 to your computer and use it in GitHub Desktop.
Save johnste/0e15e2c0e6dbe636e560ff202bea4367 to your computer and use it in GitHub Desktop.
// Rewrite all Bing links to DuckDuckGo instead
finicky.onUrl(function(url, opts) {
var url = url.replace(
/^https?:\/\/www\.bing\.com\/search/,
"https://duckduckgo.com"
);
return {
url: url
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment