如何從命令列在現有 Google Chrome 視窗中開啟特定設定檔的 URL?透過個人資料,我的意思是https://linuxhint.com/use_multiple_profiles_simultaneously_google_chrome/。
現在,如果我簡單地這樣做
open http://www.example.com
在 Linux 或
'C:\Users\xxx\Program Files\Google\Chrome\Application\chrome.exe' http://www.example.com
在 Windows 上(從 Windows 終端機),它將在我為不同設定檔開啟的多個視窗中恰好位於「焦點」或「頂部」的任何 Chrome 視窗中開啟 URL。
答案1
使用該--profile-directory
選項指定您希望在哪個設定檔中開啟 URL。
example.com
在 macOS 上,這將開啟以下位置的URL Profile 3
:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --profile-directory="Profile 3" https://example.com/
在 Linux 或 Windows 上是相同的,但您必須提供 Chrome 程式的正確路徑。
您可以在特殊的 URL 處查看設定檔目錄名稱chrome://version
,這裡是螢幕截圖顯示在哪裡可以找到它。
如果個人資料有關聯的電子郵件地址,您可以使用[email protected]
代替--profile-directory
。
答案2
在 Windows 上,我在 CMD 中使用以下程式碼來開啟特定設定檔中的特定頁面。在此範例中,它是預設配置文件,但您可以輕鬆地將其替換為“設定檔 3”。
Start chrome /profile-directory="Default" "http://www.example.com"