- Example URL:
https://en.m.wikipedia.org/
- Include pattern:
^(https?://)(.*\.)m(?:obile)?\.(.*)
- Redirect to:
$1$2$3
- Pattern type: Regular Expression
- Description: always show the desktop site of a webpage
- Example URL:
https://www.google.com/amp/www.example.com/amp/document
- Include pattern:
^(?:https?://)www.(?:google|bing).com/amp/(.*)
- Redirect to:
https://$1
- Pattern type: Regular Expression
- Description: AMP is bad: https://80x24.net/post/the-problem-with-amp/
- Example URL:
https://www.reddit.com/u/test
- Include pattern:
^(?:https?://)(?:www.)reddit.com(.*)
- Redirect to:
https://old.reddit.com$1
- Pattern type: Regular Expression
- Example URL:
https://ad.doubleclick.net/ddm/trackclk/N135005.2681608PRIVATENETWORK/B20244?https://www.example.com
- Include pattern:
^(?:https?://)ad.doubleclick.net/.*\?(http?s://.*)
- Redirect to:
$1
- Pattern type: Regular Expression
- Description: remove doubleclick link tracking / fix problems with doubleclick host based blocking
What are bangs?: https://duckduckgo.com/bang
- Example URL:
https://www.google.com/search?&ei=-FvkXcOVMo6RRwW5p5DgBg&q=asdfasdf%21+sadfas&oq=%21asdfasdf+sadfas&gs_l=asdfsadfafsgaf
- Include pattern:
^(?:https?://)(?:www.)google\.(?:com|au|de|co\.uk)/search\?(?:.*)?(?:oq|q)=([^\&]*\+)?((?:%21|!)[^\&]*)
- Redirect to:
https://duckduckgo.com/?q=$1$2
- Pattern type: Regular Expression
- Description: redirect any querry to google with a !bang to DDG
- Example URL:
https://duckduckgo.com/?q=!
example&get=other
- Include pattern:
^(?:https?://)(?:.*\.)?duckduckgo.com/\?q=(?:%21|!)
example(?=[^\+]|$)(?=\W|$)
- Redirect to:
https://example.com/
- Pattern type: Regular Expression
- Description: redirect to the base site when bang is the only search parameter
- Example URL:
https://duckduckgo.com/?q=searchterm+!
example+searchterm2&get=other
- Include pattern:
^(?:https?://)(?:.*\.)?duckduckgo.com/\?q=(.*\+)?(?:(?:%21|!)
example)(?:\+([^\&\?\#]*))?(?:\W|$)
- Redirect to:
https://example.com/?query=$1$2
- Pattern type: Regular Expression
- Description: redirect to custom site search
- Example URL:
https://duckduckgo.com/?q=!ghh+https%3A%2F%2Fgithub.com%2Fbabel%2Fbabel%2Fblob%2Fmaster%2Fpackages%2Fbabel-core%2FREADME.md&adfasfasd
- Include pattern:
^(?:https?://)duckduckgo.com/\?q=(?:(?:%21|!)ghh\+)(?:.*)(github|gitlab|bitbucket)(?:\.org|\.com)(.*?(?=\&))
- Redirect to:
https://$1.githistory.xyz$2
- Pattern type: Regular Expression
- Description: https://githistory.xyz
- Advanced:
- Process matches: URL decode
If you are a Firefox user and use a dark theme, you can edit your userChrome.css file and add these lines to it for the extension button to more visible:
/* Redirector button for dark Firefox themes */
toolbarbutton#toggle-button--redirectoreinaregilssoncom-redirector[image*="active"]{filter:invert(100%) brightness(600%);}
toolbarbutton#toggle-button--redirectoreinaregilssoncom-redirector[image*="disabled"]{filter:invert(100%) brightness(250%);}
If you don't know what the userChrome.css file is or how to edit it, please look it up on Firefox forums instead of asking about it on this repository.