# PLIST (.plist) ポリシーの展開

<figure><img src="https://3468650114-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FeJwa6ByNJ2qindnPknCW%2Fuploads%2FQZmRXbShjABiS5Zz2tiP%2Fimage.png?alt=media&#x26;token=32a4053a-67aa-4808-9334-78b7b73143ae" alt=""><figcaption></figcaption></figure>

## PLISTポリシーを利用したKeeper Chromeブラウザ拡張機能の展開

### Keeper plistポリシー構成ファイルの作成

ポリシーファイルをまだ作成していない場合、MacOSデスクトップのメニューバー&#x306E;**\[移動]**&#x304B;&#x3089;**\[ユーティリティ]**、**\[ターミナル]**&#x306E;順に選択してターミナルコンソールを開き、/tmpなど任意の場所に**com.google.Chrome.plist**というファイル名でKeeper plistポリシーファイルを作成します。

![MacOSターミナルユーティリティ](https://3468650114-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FeJwa6ByNJ2qindnPknCW%2Fuploads%2FUPyev8NV4dy3VHgLADrU%2FJP_Mac_Go_Utilities.png?alt=media\&token=e9f77537-fd31-4b91-baed-e7edad7b0013)

以下の内容をコピーしてターミナルに貼り付け、Enter/Returnを押します。これにより、/tmpディレクトリ内にplistファイルが作成され、その場所にファイルが存在する旨表示されます。

{% tabs %}
{% tab title="Mac Terminal" %}

```
cd /tmp
touch com.google.Chrome.plist
ls -la
```

{% endtab %}
{% endtabs %}

![plistファイルの作成](https://3468650114-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FeJwa6ByNJ2qindnPknCW%2Fuploads%2FpvwT3qAUEVoD0BpPQjYM%2Fassets_-LO5CAzpxoaEquZJBpYz_-MGK62cZWXIvwLNmaACf_-MGK8KGmEHzyT7Vtf-RG_plist.webp?alt=media\&token=368d1432-105f-445b-b1a1-11dbd6bf9374)

任意のファイルエディタで以下の内容をコピーし、**com.google.Chrome.plist**ファイルに貼り付けてから保存します。

{% code overflow="wrap" %}

```
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
	<dict>
		<key>ExtensionSettings</key>
		<dict>
			<key>bfogiafebfohielmmehodmfbbebbbpei</key>
			<dict>
				<key>installation_mode</key>
				<string>force_installed</string>
				<key>update_url</key>
				<string>https://clients2.google.com/service/update2/crx</string>
			</dict>
		</dict>
                <key>ExtensionPolicies</key>
		<!-- Chrome policies should be outside of ExtensionSettings -->
		<key>PasswordManagerEnabled</key>
		<false/>
		<key>AutofillCreditCardEnabled</key>
		<false/>
		<key>AutofillAddressEnabled</key>
		<false/>
	</dict>
</plist>
```

{% endcode %}

### PLISTポリシーの展開

PLISTポリシーの展開には、複数のツールが使用できます。次のページでは、Jamf Pro、AirWatch、Microsoft Intuneを使用してPLISTポリシーファイルを展開する手順について解説します。
