Redirector
Dynamic URL Redirector
As of June 2026, Redirector has 20,000 users and a 4.36/5 rating from 44 reviews in the Productivity category.
Usersup 100.0 percent+100.0%
20.0K
20,000
Ratingdown 5.4 percent−5.4%
4.36
44 reviews
Reviewsup 41.9 percent+41.9%
44
Version
0.16.11
Manifest V3
90-day change · In the last 90 days this extension gained 10.0K users, 6 version updates.
History
12 snapshotsTracking since Apr 7, 2026.
View as table
| Date | Users | Rating | Reviews | Version |
|---|---|---|---|---|
| Apr 7, 2026 | 10.0K | 4.61 | 31 | 0.15.0 |
| Apr 17, 2026 | 10.0K | 4.50 | 32 | 0.15.0 |
| Apr 28, 2026 | 10.0K | 4.41 | 34 | 0.16.0 |
| May 8, 2026 | 10.0K | 4.31 | 35 | 0.16.2 |
| May 12, 2026 | 20.0K | 4.32 | 37 | 0.16.2 |
| May 14, 2026 | 20.0K | 4.36 | 39 | 0.16.2 |
| May 16, 2026 | 20.0K | 4.36 | 39 | 0.16.7 |
| May 19, 2026 | 20.0K | 4.38 | 40 | 0.16.8 |
| May 22, 2026 | 20.0K | 4.40 | 42 | 0.16.8 |
| May 27, 2026 | 20.0K | 4.35 | 43 | 0.16.8 |
| Jun 7, 2026 | 20.0K | 4.35 | 43 | 0.16.9 |
| Jun 10, 2026 | 20.0K | 4.35 | 43 | 0.16.11 |
| Now | 20.0K | 4.36 | 44 | 0.16.11 |
Changelog
- Apr 28, 2026description
🌟 Introduction Redirector is a powerful and flexible browser extension that allows users to customize URL redirection rules. Using regular expressions, users can create complex redirection rules applicable to various websites and URL patterns. ✨ Key Features • Create custom redirection rules using regular expressions • Support for multiple redirection rules • Real-time URL match testing • Intuitive user interface for easy addition, editing, and deletion of rules • Support for wildcards and complex URL patterns 🚀 How to Use 1. Click on the Redirector icon in the browser toolbar to open the options page 2. In the "Add a redirect URL" section: - Enter the source URL pattern (using regular expression) in the left input box - Enter the target URL in the right input box (you can use $1, $2, etc., to reference capture groups in the regular expression) - Click the "Add" button to add a new rule 3. You can test your redirection rules in the "Test URL" section 4. Added rules will be displayed in the "Rules" list, where you can delete unnecessary rules at any time 📝 Example Rule Regex - Redirect an entire domain to another (e.g. reddit.com to old.reddit.com): - From: `^https://www.reddit.com/(.*)` - To: `https://old.reddit.com/$1` Regex - Redirect Google search to DuckDuckGo: - From: `^https://www.google.com/search\?q=(.*?)&.*$` - To: `https://duckduckgo.com/?q=$1` URL Pattern - Redirect Google search to DuckDuckGo: - From: `https://www.google.com/search?q=:id&(.*)` - To: `https://duckduckgo.com/?q={{search.groups.id|decodeURIComponent}}` 🔒 Privacy This extension processes all redirection rules locally and does not collect or transmit any user data. 📧 Contact If you have any questions or suggestions, please join us at https://discord.gg/gFhKUthc88Redirector automatically redirects URLs from one site to another based on rules you define. Once a rule is active, every time you visit a matching URL, you're instantly sent to the destination — no extra clicks needed. COMMON USE CASES • Always use Old Reddit instead of the redesign • Switch Google search results to DuckDuckGo • Skip tracking redirects (email click-tracking links) and go straight to the real destination • Redirect deprecated tool URLs to their replacements QUICK START — Your first rule in 30 seconds Let's redirect reddit.com → old.reddit.com: 1. Click the Redirector icon in your toolbar — the options page opens 2. Click "Add Rule" 3. Fill in the two fields: Match URL: ^https://www.reddit.com/(.*) Redirect To: https://old.reddit.com/$1 4. (Optional) Paste a test URL like https://www.reddit.com/r/cats to verify the result 5. Click "Add" — done! How the pattern works: • ^https://www.reddit.com/ matches the beginning of any Reddit URL • (.*) captures everything after the domain (e.g. r/cats) • $1 in Redirect To inserts that captured part into the new URL That's the basic idea: match a URL, capture the parts you need, build a new URL with them. MORE EXAMPLES Redirect Google search to DuckDuckGo: Match URL: ^https://www.google.com/search\?q=(.*?)&.*$ Redirect To: https://duckduckgo.com/?q=$1 Skip email click-tracking redirects: Match URL: https://click.redditmail.com/CL0/(.*) Redirect To: {{$1|decodeURIComponent}} KEY FEATURES • Create redirect rules using regex or URL Pattern syntax • Enable, disable, reorder, and test rules with real-time feedback • Import/export rules as JSON to back up or share with others • Supports pipeline transformations (URL decoding, base64 decoding) • Keyboard shortcut Alt+Shift+O to navigate back to the original URL before redirect PRIVACY All rules are processed locally. This extension does not collect or transmit any user data. CONTACT If you have any questions or suggestions, please join us at https://discord.gg/gFhKUthc88 - Apr 17, 2026description
🌟 Introduction Redirector is a powerful and flexible browser extension that allows users to customize URL redirection rules. Using regular expressions, users can create complex redirection rules applicable to various websites and URL patterns. ✨ Key Features • Create custom redirection rules using regular expressions • Support for multiple redirection rules • Real-time URL match testing • Intuitive user interface for easy addition, editing, and deletion of rules • Support for wildcards and complex URL patterns 🚀 How to Use 1. Click on the Redirector icon in the browser toolbar to open the options page 2. In the "Add a redirect URL" section: - Enter the source URL pattern (using regular expression) in the left input box - Enter the target URL in the right input box (you can use $1, $2, etc., to reference capture groups in the regular expression) - Click the "Add" button to add a new rule 3. You can test your redirection rules in the "Test URL" section 4. Added rules will be displayed in the "Rules" list, where you can delete unnecessary rules at any time 📝 Example Rule Regex - Redirect an entire domain to another (e.g. reddit.com to old.reddit.com): - From: `^https://www.reddit.com/(.*)` - To: `https://old.reddit.com/$1` Regex - Redirect Google search to DuckDuckGo: - From: `^https://www.google.com/search\?q=(.*?)&.*$` - To: `https://duckduckgo.com/?q=$1` URL Pattern - Redirect Google search to DuckDuckGo: - From: `https://www.google.com/search?q=:id&(.*)` - To: `https://duckduckgo.com/?q={{search.groups.id|decodeURIComponent}}` 🔒 Privacy This extension processes all redirection rules locally and does not collect or transmit any user data. 📧 Contact If you have any questions or suggestions, please join us at https://discord.gg/fErBc3wYrC🌟 Introduction Redirector is a powerful and flexible browser extension that allows users to customize URL redirection rules. Using regular expressions, users can create complex redirection rules applicable to various websites and URL patterns. ✨ Key Features • Create custom redirection rules using regular expressions • Support for multiple redirection rules • Real-time URL match testing • Intuitive user interface for easy addition, editing, and deletion of rules • Support for wildcards and complex URL patterns 🚀 How to Use 1. Click on the Redirector icon in the browser toolbar to open the options page 2. In the "Add a redirect URL" section: - Enter the source URL pattern (using regular expression) in the left input box - Enter the target URL in the right input box (you can use $1, $2, etc., to reference capture groups in the regular expression) - Click the "Add" button to add a new rule 3. You can test your redirection rules in the "Test URL" section 4. Added rules will be displayed in the "Rules" list, where you can delete unnecessary rules at any time 📝 Example Rule Regex - Redirect an entire domain to another (e.g. reddit.com to old.reddit.com): - From: `^https://www.reddit.com/(.*)` - To: `https://old.reddit.com/$1` Regex - Redirect Google search to DuckDuckGo: - From: `^https://www.google.com/search\?q=(.*?)&.*$` - To: `https://duckduckgo.com/?q=$1` URL Pattern - Redirect Google search to DuckDuckGo: - From: `https://www.google.com/search?q=:id&(.*)` - To: `https://duckduckgo.com/?q={{search.groups.id|decodeURIComponent}}` 🔒 Privacy This extension processes all redirection rules locally and does not collect or transmit any user data. 📧 Contact If you have any questions or suggestions, please join us at https://discord.gg/gFhKUthc88
Permissions & access
- Permissions
- storagewebRequestwebNavigation
- Host access
- <all_urls>
Screenshots
About
Redirector automatically redirects URLs from one site to another based on rules you define. Once a rule is active, every time you visit a matching URL, you're instantly sent to the destination — no extra clicks needed.
COMMON USE CASES
• Always use Old Reddit instead of the redesign
• Switch Google search results to DuckDuckGo
• Skip tracking redirects (email click-tracking links) and go straight to the real destination
• Redirect deprecated tool URLs to their replacements
QUICK START — Your first rule in 30 seconds
Let's redirect reddit.com → old.reddit.com:
1. Click the Redirector icon in your toolbar — the options page opens
2. Click "Add Rule"
3. Fill in the two fields:
Match URL: ^https://www.reddit.com/(.*)
Redirect To: https://old.reddit.com/$1
4. (Optional) Paste a test URL like https://www.reddit.com/r/cats to verify the result
5. Click "Add" — done!
How the pattern works:
• ^https://www.reddit.com/ matches the beginning of any Reddit URL
• (.*) captures everything after the domain (e.g. r/cats)
• $1 in Redirect To inserts that captured part into the new URL
That's the basic idea: match a URL, capture the parts you need, build a new URL with them.
MORE EXAMPLES
Redirect Google search to DuckDuckGo:
Match URL: ^https://www.google.com/search\?q=(.*?)&.*$
Redirect To: https://duckduckgo.com/?q=$1
Skip email click-tracking redirects:
Match URL: https://click.redditmail.com/CL0/(.*)
Redirect To: {{$1|decodeURIComponent}}
KEY FEATURES
• Create redirect rules using regex or URL Pattern syntax
• Enable, disable, reorder, and test rules with real-time feedback
• Import/export rules as JSON to back up or share with others
• Supports pipeline transformations (URL decoding, base64 decoding)
• Keyboard shortcut Alt+Shift+O to navigate back to the original URL before redirect
PRIVACY
All rules are processed locally. This extension does not collect or transmit any user data.
CONTACT
If you have any questions or suggestions, please join us at https://discord.gg/gFhKUthc88Technical
- Version
- 0.16.11
- Manifest
- V3
- Size
- 203KiB
- Min Chrome
- 88
- Languages
- 1
- Featured
- Yes
Metadata
- ID
- lioaeidejmlpffbndjhaameocfldlhin
- Developer ID
- u28ff49e7d19b0843e59be957d8f12994
- Developer Email
- [email protected]
- Created
- Sep 14, 2024
- Last Updated (Store)
- Jun 7, 2026
- Last Scraped
- Jun 19, 2026
- Website
- rxliuli.com
- Support URL
- https://store.rxliuli.com/support/
- Privacy Policy
- https://rxliuli.com/webstore/privacy
Similar extensions
Alternatives to Redirector, ranked by description similarity.
RedirectorPro
Create custom URL redirection rules using Wildcards and Regex to bypass tracking and automate URL fixes.
25
★ 5.0
Redirector
Easily Redirect URLs with Advanced Pattern Matching for Total Browsing Control
79
★ 1.0
Regex Redirect
Redirects based on regex patterns
19
Redirect - URL Rewrite
Local pattern-based URL redirection.
196
★ 2.3
Advanced RegEx URL Redirector and Text Replace
Redirect URLs and replace text or links on web pages using Regular Expressions.
157
★ 5.0
JustRedirection
Redirect requests based on filter rules
26
Sakura Redirector
Auto-redirect moved sites with Sakura theme and multi-language support. A seamless experience for your domain transitions.
21
Link Rewriter
Automatically rewrites specific link URLs
5
Data sourced from the Chrome Web Store · last verified Jun 19, 2026.