Home

Awesome

NOTE: This software is not being actively developed or maintained. Some fork (such as slater1/BrowseRouter may be more up-to-date).

Browser Selector Build status

Small utility to launch a different browser depending on the domain of the url being launched.

Read the blog post about this here.

Setting Up

  1. Grab the latest release and extract to a folder somewhere on your PC.
  2. Open the BrowserSelector.ini file and customise paths to your browsers and domain patterns (see below).
  3. Run BrowserSelector.exe --register from this folder to register the tool in Windows as a web browser.
  4. Open the "Choose a default browser" screen in Windows (you can simply search for "default browser" from the start screen).
  5. Select BrowserSelector as the default browser.

So far, it has been tested on the following:

Usage

BrowserSelector.exe --register
    Register as web browser

BrowserSelector.exe --unregister
    Unregister as web browser

BrowserSelector.exe --create
    Creates a default/sample settings file

BrowserSelector.exe "http://example.org/"
    Launch example.org

BrowserSelector.exe [--wait] "http://example.org/"
    Launch example.org, optionally waiting for the browser to close..

BrowserSelector.exe "http://example.org/" "http://example.com/" [...]
    Launches multiple urls

BrowserSelector.exe "my bookmark file.url"
    Launches the URL specified in the .url file.

BrowserSelector.exe "my bookmark file.webloc"
    Launches the URL specified in the .webloc (osx) file.

If you use the --wait flag with multiple urls/files each will open one after the other, in order. Each waits for the previous to close before opening. Using the --wait flag is tricky, though, since many (most) browsers open new urls as a new tab in an existing instance.

To open multiple urls at the same time and wait for them, try the following:

BrowserSelector.exe "url-or-file" "url-or-file" --wait "url-or-file"

Config

Config is a poor mans INI file:

; Default browser is first in list
; Use `{url}` to specify UWP app browser details
[browsers]
chrome = C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
ff = C:\Program Files (x86)\Mozilla Firefox\firefox.exe
edge = microsoft-edge:{url}
ie = iexplore.exe
chrome_prof8 = "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --profile-directory="Profile 8"

; Url preferences.
; Only * is treated as a special character (wildcard).
; Matches are domain-only. Protocols and paths are ignored.
; Use "*.blah.com" for subdomains, not "*blah.com" as that would also match "abcblah.com".
[urls]
microsoft.com = ie
*.microsoft.com = ie

; Use my project-based Chrome profile
myproject.live = chrome_prof8
myproject.local = chrome_prof8

; if the key is wrapped in /'s, it is treated as a regex.
/sites\.google\.com/a/myproject.live\.com/ = chrome_prof8

google.com = chrome
visualstudio.com = edge

Browsers

chrome = C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
chrome_prof8 = "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --profile-directory="Profile 8"

Special cases:

edge = microsoft-edge:{url}

Urls

There are two ways to specify an Url. You can use simple wildcards or full regular expressions.

Simple wildcards:

microsoft.com = ie
*.microsoft.com = ie

Full regular expressions:

	/sites\.google\.com/a/myproject.live\.com/ = chrome_prof8