Gostaria de carregar dois ou mais aplicativos.
Você precisa usar uma vírgula ,
para separar a lista de aplicativos.
Tente a seguinte linha de comando (citada para evitar a barra de rolagem):
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --profile-directory=Default --app-id=ckoejdikoiejoakefebpdfokijadifom,ljmjmhjkcgfmfdhgplikncgndbdeckci
Nota:
- Se você quiser carregar extensões, precisará usar uma opção diferente
--load-extension
.
Lista de opções de linha de comando do Chromium
--load-apps
- Path to a comma-separated list of apps to load at startup.The first app in the list will be launched.
--load-extension
- Loads an extension from the specified directory
Fonte Lista de opções de linha de comando do Chromium
switches.cc
// Path to a comma-separated list of apps to load at startup.
// The first app in the list will be launched.
const char kLoadApps[] = "load-apps";
...
// Loads an extension from the specified directory.
const char kLoadExtension[] = "load-extension";
Origem switches.cc