How can I set two or more Chrome profiles in Ubuntu 10.10 ?
Asked
Active
Viewed 2,903 times
2 Answers
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
-
your link is spammy/vague...I would delete, except this is an answer to your own post. Be careful! – studiohack Mar 15 '11 at 12:49
-
however this was what I needed, and it work for me – radu c Mar 15 '11 at 13:18
-
3It'd be better to actually answer the problem here with the steps you took and then link to your blog. – James Mertz Mar 15 '11 at 15:30
-
Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change. – DavidPostill Sep 03 '21 at 16:44