# Install Nightfall AI Extension via a Common MDM Profile

When a company has deployed another profile that controls the Chrome browser ExtensionSettings and it clashes with Nightfall's Profile, the administrator can add the Nightfall ExtensionSettings within the currently present profile to allow the Nightfall extension to connect.

\
Simply add this code block to the custom, common MDM profile within the **\<array>** brackets:

```xml
	<dict>
			<key>ExtensionSettings</key>
			<dict>
				<key>jgmgecncmjklkabkejnjfgfkglapfgek</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>PayloadDisplayName</key>
			<string>Google Chrome - Nightfall Extension</string>
			<key>PayloadIdentifier</key>
			<string>com.google.Chrome.8370900F-6579-4703-8FEF-1DE3DD384618</string>
			<key>PayloadType</key>
			<string>com.google.Chrome</string>
			<key>PayloadUUID</key>
			<string>8370900F-6579-4703-8FEF-1DE3DD384618</string>
			<key>PayloadVersion</key>
			<integer>1</integer>
		</dict>
		<dict>
			<key>ExtensionSettings</key>
			<dict>
				<key>jgmgecncmjklkabkejnjfgfkglapfgek</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>PayloadDisplayName</key>
			<string>Google Chrome Beta - Nightfall Extension</string>
			<key>PayloadIdentifier</key>
			<string>com.google.Chrome.beta.A6E44352-4604-4968-8F35-F74BA0FE5C48</string>
			<key>PayloadType</key>
			<string>com.google.Chrome.beta</string>
			<key>PayloadUUID</key>
			<string>A6E44352-4604-4968-8F35-F74BA0FE5C48</string>
			<key>PayloadVersion</key>
			<integer>1</integer>
		</dict>
```

An **example** of it is found below:

```xml
<?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>PayloadContent</key>
    <array>
        ...
        ...
		<dict>
			<key>ExtensionSettings</key>
			<dict>
				<key>jgmgecncmjklkabkejnjfgfkglapfgek</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>PayloadDisplayName</key>
			<string>Google Chrome - Nightfall Extension</string>
			<key>PayloadIdentifier</key>
			<string>com.google.Chrome.8370900F-6579-4703-8FEF-1DE3DD384618</string>
			<key>PayloadType</key>
			<string>com.google.Chrome</string>
			<key>PayloadUUID</key>
			<string>8370900F-6579-4703-8FEF-1DE3DD384618</string>
			<key>PayloadVersion</key>
			<integer>1</integer>
		</dict>
		<dict>
			<key>ExtensionSettings</key>
			<dict>
				<key>jgmgecncmjklkabkejnjfgfkglapfgek</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>PayloadDisplayName</key>
			<string>Google Chrome Beta - Nightfall Extension</string>
			<key>PayloadIdentifier</key>
			<string>com.google.Chrome.beta.A6E44352-4604-4968-8F35-F74BA0FE5C48</string>
			<key>PayloadType</key>
			<string>com.google.Chrome.beta</string>
			<key>PayloadUUID</key>
			<string>A6E44352-4604-4968-8F35-F74BA0FE5C48</string>
			<key>PayloadVersion</key>
			<integer>1</integer>
		</dict>
        ...
        ...
    </array>
</dict>
</plist>
```
