macOS デバイスでオフラインでブラウザ拡張機能をインストールする

Google Chrome は、.crx 形式のプラグイン ファイルを使用する Chromium ベースの Web ブラウザです。 これらのファイルは、Bot Agentのインストールと一緒に提供され、IT 管理者がオフラインでブラウザ拡張機能をインストールするために使用できます。

Automation 360bboccnojhhoegfffpcllbeigipedjedfGoogle Chrome 拡張子の識別子として使用します。

リモートインストール

モバイルデバイス管理 (MDM) は、IT 管理者が macOS デバイス (iPhone、iPad、Mac、Apple TV など) をリモートで構成、セキュリティ、更新、監視できるようにします。 これにより、個々のデバイスでの手動設定が不要になります。 Jamf は、デバイスの登録、在庫追跡、ポリシーの適用、アプリケーションの更新をサポートしているため、macOS に使用できる MDM の一つです。

Jamf MDM を使って Google Chrome 拡張機能をインストールしなければならないシナリオを考えてみましょう。 Jamf MDM で次のいずれかのオプションを使用できます。

  • JSON スクリプト
    次の JSON スクリプトを使用します:
    {
      "title": "Google Chrome Extensions (com.google.Chrome)",
      "description": "Install extensions in Google Chrome",
      "properties": {
        "ExtensionInstallForcelist": {
          "title": "Extension Install Forcelist",
          "description": "Add extension IDs. Paste the extension ID in front of the default text.",
          "property_order": 5,
          "type": "array",
          "items": {
            "title": "Extension ID",
            "default": "<bboccnojhhoegfffpcllbeigipedjedf>;https://clients2.google.com/service/update2/crx",
            "type": "string"
          }
        }
      }
    }
  • Plist
    Jamf MDMでPlistオプションを使用するには、com.google.ChromeとしてPreference domainプロファイルを設定できるアプリケーションとカスタム設定のペイロードを持つ構成プロファイルが必要です。 次の Plist フォームを使用できます。
    <?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>ExtensionInstallForcelist</key>
        <array>
          <string>bboccnojhhoegfffpcllbeigipedjedf</string>
        </array>
      </dict>
    </plist>

手動インストール

IT 管理者として、Google Chromeの拡張機能を手動でインストールすることを選択できます。 macOS台のデバイスには、Preferences JSONファイルのインストールを使用できます。 詳細については、[Install Google Chrome using preferences JSON file]を参照してください。