Is it possible to set Google chrome with a custom user profile as the default browser?

When I set google chrome as the default browser, it picks the "default" user profile as against the custom one I have setup. I tried setting google chrome as default browser after opening it from that particular user profile, but it doesn't seem to have an effect.

I googled around but could only find another poor soul like myself who asked a similar question here: http://www.google.com/support/forum/p/Chrome/thread?tid=69f0a6e776ceab1c&hl=en

There weren't any responses to that question.

Cheers.

link|improve this question

60% accept rate
I'd love an answer for this - it's extremely annoying that any links I open from external programs don't open with my custom profile. – SamStephens Nov 24 '10 at 21:29
I've asked the Ubuntu version of this question here askubuntu.com/questions/96804/… – d3vid Jan 19 at 11:04
feedback

3 Answers

Ok, so i did a search and replace of all the chrome.exe in my registry with the specific command link So

"C:\Users\PROFILE-NAME\AppData\Local\Google\Chrome\Application\chrome.exe" -- "%1"

was replaced with

"C:\Users\PROFILE-NAME\AppData\Local\Google\Chrome\Application\chrome.exe" --user-data-dir="C:\Chrome Profile \location" --omnibox-popup-count=10 -- "%1"

everywhere and so far haven't run into any troubles. But there should definitely be a more easier/elegant way of doing this.

link|improve this answer
feedback

There's an explanation of how to use multiple Chrome profiles here.

The gist of it is to look inside

%USERPROFILE%\Local Settings\Application Data\Google\Chrome

(Windows XP)
or

%USERPROFILE%\AppData\Local\Google\Chrome

(Vista, Win7)

and copy the "User Data\Default" folder to "User Data\your_profile".

Then run chrome with some command-line options:

chrome.exe --user-data-dir="..\User Data\Your_profile" -first-run

and thereafter, you can run Chrome with that profile by using:

chrome.exe --user-data-dir="..\User Data\Your_Name"

And you can add that --user-data-dir option to a shortcut.

Now how you would use that setup for the default browser, I don't know. Might involve some tinkering in the Registry, around HKEY_CLASSES_ROOT\htmlfile\shell

link|improve this answer
:) just added an answer while you replied, let's see if anybody else comes up with a better solution. – Kaushik Gopal Feb 16 '10 at 15:43
feedback

This question is basically the same, and the answers indicate that unfortunately, there is no practical solution yet.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.