macOS 기기에서 오프라인으로 브라우저 확장 프로그램 설치

Google Chrome은 Chromium 기반 웹 브라우저로, .crx 형식의 플러그인 파일을 사용합니다. 이 파일은 Bot Agent 설치와 함께 제공되며, IT 관리자가 오프라인에서 브라우저 확장 프로그램을 설치하는 데 사용할 수 있습니다.

Automation 360Google Chrome 확장 프로그램의 식별자로 bboccnojhhoegfffpcllbeigipedjedf를 사용합니다.

원격 설치

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 옵션을 사용하려면 Preference domain 프로필을 com.google.Chrome으로 설정할 수 있는 애플리케이션 및 사용자 지정 설정 페이로드가 포함된 구성 프로필이 있는지 확인하세요. 다음 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 항목을 참조하십시오.