Xubuntu 中特定 Chromium 配置文件的启动器?

Xubuntu 中特定 Chromium 配置文件的启动器?

添加到 Xfce 启动器中以启动特定 Chromium 配置文件的命令是什么?

在此处输入图片描述

答案1

您可以使用以下选项从命令行选择要使用的配置文件--profile-directory

chromium-browser --profile-directory="Profile 1"
chromium-browser --profile-directory="Default"

要了解可用配置文件的列表,请查看~/.config/chromium

$ ls ~/.config/chromium
./                            Profile 1/
../                           Safe Browsing Bloom
Certificate Revocation Lists  Safe Browsing Bloom Prefix Set
Channels                      Safe Browsing Cookies
chrome_shutdown_ms.txt        Safe Browsing Cookies-journal
Crash Reports/                Safe Browsing Csd Whitelist
Default/                      Safe Browsing Download
First Run                     Safe Browsing Download Whitelist
Local State                   Safe Browsing Extension Blacklist
pnacl/                        Safe Browsing IP Blacklist

来源:http://peter.sh/experiments/chromium-command-line-switches/

相关内容