15
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

macOSでGoogle Chromeのプロファイル名を指定してターミナルから立ち上げる

Posted at

はじめに

Google Chromeでは複数のプロファイルを作成することができます。それぞれのプロファイルにGoogleアカウントを紐付けることができるため、仕事用、個人用などをスムーズに切り替えることができます。

事前準備

Chromeのプロファイルはディレクトリです。
~/Library/Application Support/Google/Chrome/Default といった名前で保存されています。

まずはChromeのプロファイルの実体がどこにあるかを調べます。

Chromeであれば次のようなURLを開き、Profile Pathを見ることで確認できます。

chrome://version/

image.png

開く

プロファイル指定をして開くには次のコマンドをターミナルで入れます。

$ open -a "Google Chrome" --args --profile-directory="Profile 2"

openコマンドに-nオプションをつけると実行ごとに新しいウィンドウで開きます。

$ open -n -a "Google Chrome" --args --profile-directory="Profile 2"

長いのでエイリアスを掛けておくと良さそうです。

$ alias oc='open -a "Google Chrome" --args --profile-directory="Profile 2"'

(未検証)プロファイルディレクトリの変更

プロファイル名は最初がDefault、ついでProfile 1, 2, ...といった意味のない連番となっています。
これを変更するには下記の手順で行えるそうです。(未検証)

危険なため出典を確認の上、自己責任で行ってください。

  1. Chromeを完全に終了する
  2. ディレクトリをバックアップを取っておく
  3. リネームする

参考: https://superuser.com/questions/796000/how-do-i-specify-a-different-profile-directory-in-chrome

15
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?