-
Notifications
You must be signed in to change notification settings - Fork 45
Browser Extension
LangLangBart edited this page Mar 15, 2024
·
2 revisions
While Farside does not have its own official browser extension, it can be integrated with the Redirector extension, which is available for Firefox, Chrome, Edge, and Opera.
First, install the Redirector extension. Then, add the following entries in the extension.
- Description:
[Farside] General Entry
- Example URL:
https://m.youtube.com/watch?v=dQw4w9WgXcQ
- Include pattern:
^(?:https?://)?(?:www\.)?(?:\w{2,}\.)?(?:mobile\.|m\.)?((?:imdb|imgur|instagram|medium|odysee|quora|reddit|tiktok|translate\.google|wikipedia|youtube)\.(?:com|org|au|de|co|cn).*)$
- Redirect to:
https://farside.link/$1
- Pattern type: Regular Expression
The pattern above does not include language-specific Wikipedia links; an additional pattern is required.
Note
Ensure this entry is positioned above the [Farside] General
entry in the Redirector
extension to have higher precedence.
- Description:
[Farside] Optional Language Wiki Entry
- Example URL:
https://www.de.m.wikipedia.org/wiki/Atom-U-Boot#Antriebstechnik
- Include pattern:
^(?:https?://)?(?:www\.)?(?:(\w{2,})\.)?(?:mobile\.|m\.)?(wikipedia\.org.*?)(?:(/wiki/.*?)(#.*))?$
- Redirect to:
https://farside.link/$2$3?lang=$1$4
- Pattern type: Regular Expression
(extension setup suggested by @LangLangBart in Issue 64)