How to create a new profile for Google Chrome?

1

How can I set two or more Chrome profiles in Ubuntu 10.10 ?

Ek Kosmos

Posted 2011-03-14T10:04:17.703

Reputation: 281

Answers

-1

I found the answer here: Multiple profiles in Google Chrome

Ek Kosmos

Posted 2011-03-14T10:04:17.703

Reputation: 281

your link is spammy/vague...I would delete, except this is an answer to your own post. Be careful! – studiohack – 2011-03-15T12:49:47.613

however this was what I needed, and it work for me – Ek Kosmos – 2011-03-15T13:18:28.553

3It'd be better to actually answer the problem here with the steps you took and then link to your blog. – James Mertz – 2011-03-15T15:30:41.047

1

heldt

Posted 2011-03-14T10:04:17.703

Reputation: 119

Once it's loaded, press control + M to invoke the profile selection menu. I have tried this but it doesn't do anything. To be more specific, I am using Ubuntu 10.10 with Chrome 10.0.648.133 installed. – None – 2011-03-14T10:13:46.763

In the meantime, Chrome has implemented a profile manager.

– Dan Dascalescu – 2013-04-28T02:13:55.210

0

If you want to SET different chrome profiles in the ubuntu quicklist, I think that this is the best solution, it works for me:

Run the commands:

sudo cp /usr/share/applications/google-chrome.desktop ~/.local/share/applications
gedit ~/.local/share/applications/google-chrome.desktop

add the following codes:

X-Ayatana-Desktop-Shortcuts=Work;Personal;Three

[Work Shortcut Group]
Name=New Work Profile window
Exec=/opt/google/chrome/google-chrome --enable-udd-profiles --user-data-dir=.config/google-chrome/Work %U
TargetEnvironment=Unity

[Personal Shortcut Group]
Name=New Personal Profile window
Exec=/opt/google/chrome/google-chrome --enable-udd-profiles --user-data-dir=.config/google-chrome/Personal %U
TargetEnvironment=Unity

[Three Shortcut Group]
Name=New Third Profile window
Exec=/opt/google/chrome/google-chrome --enable-udd-profiles --user-data-dir=.config/google-chrome/Third %U
TargetEnvironment=Unity

[No Security Shorcut]
Name=Touch no web security Profile
Exec=/opt/google/chrome/google-chrome --enable-udd-profiles --user-data-dir=.config/google-chrome/Third --disable-web-security --touch-events %U
TargetEnvironment=Unity

Save and close the file. Restart Unity

unity --replace

Source: http://www.tendogs.net/

eMarine

Posted 2011-03-14T10:04:17.703

Reputation: 101