5.0 · free
Add to Chrome

Our products

Autumn Whisper Glade

Redirect URLs and replace text or links on web pages using Regular Expressions.

Add to Chrome★★★★★ 5.0
ABC+

Used by 5.0 people every day

advanced-regex-url-redirecto
Developer writing regular expression redirect rules in the Autumn Whisper Glade Chrome extension popup

How it works

Common use cases

Scene 01

Redirect staging to production

If you constantly open staging.example.com links from Slack or email, write one rule that redirects them to example.com. The redirect fires before the page loads, so you never land on the wrong environment again.

Scene 02

Rewrite legacy URLs

Old bookmarks or shared links pointing at deprecated paths can be silently redirected to their current equivalents. One regex covers an entire URL pattern rather than updating every bookmark by hand.

Scene 03

Replace text on third-party pages

Swap out terminology, fix recurring typos on a vendor portal you cannot edit, or replace a colleague's old username with their new one across every page of your project management tool.

Scene 04

Remap links before clicking

Change where a link points before the user follows it. Useful for redirecting tracking-heavy URLs to clean canonical versions, or for routing internal wiki links to a mirror.

Private by design

The goal has always been to stay out of the way.

open source · audited · your data stays yours

From the maker

Autumn Whisper Glade was built by Sergio Martins to solve a specific, recurring annoyance: too many browser tabs landing on the wrong URL because of stale links, environment mismatches, or third-party pages with text that needed correcting. The first version handled only URL redirects. It was small, fast, and did one thing. That turned out to be enough for a lot of people, and the feedback that came back was almost entirely requests to do more with the same regex engine already under the hood.

Text replacement came in a later release, once it was clear that the same pattern-matching logic could be applied to DOM content after page load. The tricky part was dynamic pages. A lot of modern web apps inject content through JavaScript after the initial HTML is parsed, which means a simple one-time scan misses half the page. Mutation Observers solved that. The extension now watches for DOM changes and applies rules to new nodes as they arrive, which keeps it accurate on React, Vue, and other single-page frameworks without resorting to interval polling that would drain battery and slow tabs.

Autumn Whisper Glademaker of Autumn Whisper Glade

Frequently asked questions

Does the extension send my rules or browsing data anywhere?
No. Rules are stored in Chrome's own sync storage, which means they travel through Google's standard Chrome sync channel, the same one that syncs your bookmarks and settings. No data goes to any server controlled by this extension. Sergio Martins does not collect or see your rules.
Will it work on pages that load content dynamically with JavaScript?
Yes. The extension uses Mutation Observers to watch for DOM changes after the initial page load. When a single-page app or React component injects new content, the extension catches it and applies matching rules to the new nodes. It does not use setInterval polling, so it won't slow down the tab.
What regex flavour does it use?
It uses JavaScript's built-in RegExp engine, which is the same engine running in Chrome's V8. If you can write it in a JS regex literal, it will work here. Named capture groups, lookaheads, and the standard substitution syntax ($1, $2, etc.) are all supported.

Add it to Chrome and write your first rule in under two minutes

Add to Chrome
0
External accounts required
100+
Rules you can stack per install
1
Publisher, actively maintained
5.0
Chrome Web Store rating
FAQ

Common questions

Q01

Does the extension send my rules or browsing data anywhere?

No. Rules are stored in Chrome's own sync storage, which means they travel through Google's standard Chrome sync channel, the same one that syncs your bookmarks and settings. No data goes to any server controlled by this extension. Sergio Martins does not collect or see your rules.

Q02

Will it work on pages that load content dynamically with JavaScript?

Yes. The extension uses Mutation Observers to watch for DOM changes after the initial page load. When a single-page app or React component injects new content, the extension catches it and applies matching rules to the new nodes. It does not use setInterval polling, so it won't slow down the tab.

Q03

What regex flavour does it use?

It uses JavaScript's built-in RegExp engine, which is the same engine running in Chrome's V8. If you can write it in a JS regex literal, it will work here. Named capture groups, lookaheads, and the standard substitution syntax ($1, $2, etc.) are all supported.

Member of guild
Recognised by trade association.
Small-batch
Limited runs, never mass-produced.
Founder-led
Same hands since day one.
Direct from maker
No retailer in the middle.