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

<figure><img src="/files/ekTc6KTfi3ReEbGaK5lT" alt=""><figcaption></figcaption></figure>

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

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

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

![MacOSターミナルユーティリティ](/files/pYDcTUjz8CYXJWQCZ3aV)

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

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

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

{% endtab %}
{% endtabs %}

![plistファイルの作成](/files/m7akfZtJJMuDpfvrq50z)

任意のファイルエディタで以下の内容をコピーし、**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ポリシーファイルを展開する手順について解説します。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.keeper.io/enterprise-guide/jp/deploying-keeper-to-end-users/keeper-fill/mac/plist-policy-deployment-chrome.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
