Last active
September 25, 2025 15:30
-
-
Save limkhashing/a93ec6cf2b1dc5dc12fc3229fa51a75f to your computer and use it in GitHub Desktop.
Redirector by Einar Egilsson https://addons.mozilla.org/en-US/firefox/addon/redirector
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "createdBy": "Redirector v3.5.3", | |
| "createdAt": "2025-09-25T15:30:27.101Z", | |
| "redirects": [ | |
| { | |
| "description": "Force WhatsApp links to open in WhatsApp Web", | |
| "exampleUrl": "https://api.whatsapp.com/send?phone=60123456789", | |
| "exampleResult": "https://web.whatsapp.com/send?phone=60123456789", | |
| "error": null, | |
| "includePattern": "https://api.whatsapp.com/*", | |
| "excludePattern": "", | |
| "patternDesc": "Match all api.whatsapp.com links", | |
| "redirectUrl": "https://web.whatsapp.com/$1", | |
| "patternType": "W", | |
| "processMatches": "noProcessing", | |
| "disabled": false, | |
| "grouped": false, | |
| "appliesTo": [ | |
| "main_frame" | |
| ] | |
| }, | |
| { | |
| "description": "Redirect Telegram links to Telegram Web", | |
| "exampleUrl": "https://t.me/kslim888", | |
| "exampleResult": "https://web.telegram.org/k/#@kslim888", | |
| "error": null, | |
| "includePattern": "https://t.me/*", | |
| "excludePattern": "", | |
| "patternDesc": "Matches any https://t.me/<username or channel> link and opens it in Telegram Web", | |
| "redirectUrl": "https://web.telegram.org/k/#@$1", | |
| "patternType": "W", | |
| "processMatches": "noProcessing", | |
| "disabled": false, | |
| "grouped": false, | |
| "appliesTo": [ | |
| "main_frame", | |
| "stylesheet" | |
| ] | |
| }, | |
| { | |
| "description": "Redirect WhatsApp group invites to WhatsApp Web", | |
| "exampleUrl": "https://chat.whatsapp.com/C3w9NuZgBUsAnCPUeS08t2", | |
| "exampleResult": "https://web.whatsapp.com/accept?code=C3w9NuZgBUsAnCPUeS08t2", | |
| "error": null, | |
| "includePattern": "^https:\\/\\/chat\\.whatsapp\\.com\\/([A-Za-z0-9_-]+)", | |
| "excludePattern": "", | |
| "patternDesc": "Matches chat.whatsapp.com/<invite_code> links", | |
| "redirectUrl": "https://web.whatsapp.com/accept?code=$1", | |
| "patternType": "R", | |
| "processMatches": "noProcessing", | |
| "disabled": false, | |
| "grouped": false, | |
| "appliesTo": [ | |
| "main_frame" | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment