ポリシー設定

This page is not available in the language you requested. You have been redirected to the English version of the page.
Link to this page copied to clipboard
Not for use with personal data
warning

axe Expert 拡張機能は正式に廃止されました。詳細はaxe Expert 置換ページをご覧ください。これらのページは 2024年7月に削除される予定です。ご質問やご懸念があればhelpdesk@deque.comにメールしてください。

Firefox および Chrome の両方で、管理者がユーザーの環境を構成し、インストールされている拡張機能オプションを正確に制御する方法を提供しています。

この方法で制御できる現在のオプションは次のとおりです:

  • AttestRealm (string)

  • AttestClientId (string)

  • DataGather (boolean)

  • UsageServiceURL (string)

  • Organization (string)

note

以下の例では、lfmcehohgifnaodaogknapedjiaoebgoはChromeのaxe Expert拡張機能IDです。

Windowsでの構成

Windowsでは、レジストリエントリを作成することでポリシーを施行します。SSO設定で領域を指定する方法は次のようになります:

[HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\3rdparty\extensions\lfmcehohgifnaodaogknapedjiaoebgo\policy]
"AttestRealm"="worldspace-comply"

macOSでの構成

macOSコンピュータでは、plistファイルが構成を処理します。次のconfiguration.plistは、macOSで拡張機能のオプションを構成するために必要なものを示しています:

<?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>com.google.Chrome.extensions.lfmcehohgifnaodaogknapedjiaoebgo</key>
    <dict>
      <key>AttestRealm</key>
      <dict>
        <key>state</key>
        <string>always</string>
        <key>value</key>
        <string>worldspace-comply</string>
      </dict>
      <key>AttestClientId</key>
      <dict>
        <key>state</key>
        <string>always</string>
        <key>value</key>
        <string>attest</string>
      </dict>
      <key>DataGather</key>
      <dict>
        <key>state</key>
        <string>always</string>
        <key>value</key>
        <true />
      </dict>
    </dict>
  </dict>
</plist>

追加リソース

ユーザーのマシンや拡張機能を構成するためのポリシーを活用する方法についての詳細は、以下にリンクされたそれぞれの Windows、Firefox および Chrome のドキュメンテーションを参照してください。