A cross-platform application that lets you redirect URLs to specific browsers based on regular expression patterns.
- Works on Windows, macOS, and Linux
- Set different browsers for different websites
- Use powerful regex patterns to match URLs
- Auto-detects installed browsers
- Fall back to default browser if needed
- Comprehensive logging
All installation files are available on the GitHub Releases page.
For full functionality (including the ability to set as default browser):
- Download the MSI installer for your system architecture:
BrowserRedirector-[version]-win-x64-Setup.msi
- For 64-bit Intel/AMD systems (most common)BrowserRedirector-[version]-win-x86-Setup.msi
- For 32-bit Intel/AMD systemsBrowserRedirector-[version]-win-arm64-Setup.msi
- For ARM64 systems (like Surface Pro X)
- Run the MSI installer and follow the prompts
- Choose whether to register Browser Redirector as a browser option in Windows
For portable use without installation:
- Download the standalone executable for your architecture
- Run
BrowserRedirector.exe
directly (no browser registration available)
- Download the appropriate installer package:
BrowserRedirector-[version]-osx-x64.pkg
- For Intel MacsBrowserRedirector-[version]-osx-arm64.pkg
- For Apple Silicon Macs (M1/M2/etc.)
- Double-click the .pkg file and follow the installation instructions
- The application will be installed in your Applications folder
For Debian/Ubuntu users:
- Download the appropriate .deb package:
BrowserRedirector-[version]-linux-x64.deb
- For 64-bit Intel/AMD systems (most common)BrowserRedirector-[version]-linux-arm.deb
- For 32-bit ARM systems (like Raspberry Pi)BrowserRedirector-[version]-linux-arm64.deb
- For 64-bit ARM systems
- Install with your package manager or
sudo dpkg -i BrowserRedirector-*.deb
For other Linux distributions:
- Download the appropriate .deb package for your architecture
- Install with
sudo dpkg -i BrowserRedirector-*.deb
or your distribution's package manager
- Launch Browser Redirector (without any command-line arguments)
- The settings window will appear
- Click "Add" to create a new URL pattern rule
- Enter a name for the rule, a regex pattern, and select a browser
- Click "Save Settings" to save your configuration
- Click "Set as Default Browser" to configure your system to use Browser Redirector
.*google\.com.*
- Matches any URL containing 'google.com'.*\.pdf$
- Matches URLs ending with '.pdf'^https://github\.com.*
- Matches URLs starting with 'https://github.com'
Important: You must install using the MSI installer to register Browser Redirector as a browser.
- Click "Set as Default Browser"
- Windows Settings will open
- Find "Web browser" and select "Browser Redirector"
If "Browser Redirector" doesn't appear in the list, ensure you:
- Installed using the MSI installer (not the standalone executable)
- Selected the "Register as a browser option in Windows" option during installation
- Click "Set as Default Browser"
- System Preferences will open
- In "Default web browser", select "Browser Redirector"
- Click "Set as Default Browser"
- If using a desktop environment like GNOME or KDE, the default applications settings will open
- Select "Browser Redirector" as the default web browser
- Alternatively, the application will attempt to set itself as the default using
xdg-settings
- .NET 9.0 SDK or later
To build for all platforms:
# Clone the repository
git clone https://github.com/your-username/browser-redirector.git
cd browser-redirector
# Make the build script executable
chmod +x build-all.sh
# Run the build script
./build-all.sh
The built applications will be in the bin/Publish
directory and ZIP files in the bin
directory.
- Update the version number in
BrowserRedirector.csproj
- Commit your changes
- Create and push a new tag with the version number:
git tag v1.0.0 # Replace with actual version
git push origin v1.0.0
- GitHub Actions will automatically:
- Build the application for all platforms
- Create Windows MSI installers and standalone executables
- Create macOS .pkg installers for Intel and Apple Silicon
- Create Linux .deb packages
- Create a new GitHub release
- Generate release notes from commit messages
- Attach all build artifacts to the release
We follow Semantic Versioning:
v1.0.0
- Full releasev1.0.0-pre
- Pre-release (automatically marked as pre-release on GitHub)v1.0.0-rc1
- Release candidate