1

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

fixer1234
  • 27,486
radu c
  • 291

2 Answers2

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
  • 101
-1

I found the answer here: Multiple profiles in Google Chrome

Nifle
  • 34,446
radu c
  • 291