# Google Chrome Homepage Configuration

> Configure the Google Chrome homepage URL on macOS Devices using a Plist file deployed via Applivery Device Management Policies.

Source: https://docs.applivery.com/en/device-management/apple/macos/policies/google-chrome-homepage-configuration/  •  Last updated: 2026-06-09

**Key topics:** Device Management, Browser Configuration, macOS Policies, Google Chrome, Applivery, macOS

---

**TL;DR:** Configure Chrome homepage on macOS using Plist files and Applivery policies.

Configuring the homepage allows IT admins to control the content displayed when users launch the browser.

Use the following Plist to set a homepage URL for the Google Chrome browser. Copy the contents from below and import them into the relevant macOS Policy.

```html title="Chrome Homepage 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>PayloadContent</key>
	<array>
		<dict>
			<key>HomepageLocation</key>
			<string>https://www.applivery.com</string>
			<key>NewTabPageLocation</key>
			<string>https://www.applivery.com/docs</string>
			<key>PayloadDisplayName</key>
			<string>Google Chrome</string>
			<key>PayloadIdentifier</key>
			<string>com.google.Chrome.F8C05D93-31F5-416E-AF46-2E54F2578F9A</string>
			<key>PayloadType</key>
			<string>com.google.Chrome</string>
			<key>PayloadUUID</key>
			<string>B98A135C-3F21-40E9-9D0C-CD9E4A5A46A6</string>
			<key>PayloadVersion</key>
			<integer>1</integer>
		</dict>
	</array>
</dict>
</plist>
```

Replace the home page URL with the URL that you would like to use in the above Payload. For example:

```xml
<key>HomepageLocation</key>
<string>https://www.applivery.com</string>
<key>NewTabPageLocation</key>
<string>https://www.applivery.com/docs</string>
```

Once in the [**Applivery Dashboard**](https://dashboard.applivery.io), go to any of your **Policies** 1 or [create a new one](https://docs.applivery.com/en/device-management/general-settings/create-device-policies/).

Click the **\+ Add configuration** button on the left-hand menu, then click the **\+ Import** 2 button.

![import](https://docs.applivery.com/int/_r2/media/09ac0a4e-3ad8-478f-9f15-3474973eec71/f3b41af3-190e-4361-9dfb-c0b1a568514a.png)

You can either copy the Plist above or use the **Upload XML** button to upload a new one.

![plist](https://docs.applivery.com/int/_r2/media/09ac0a4e-3ad8-478f-9f15-3474973eec71/417c6f5d-ffc2-46b2-9108-07b0ffa2194a.png)

:::info
Restart Google Chrome to verify that the configuration has been applied correctly.
:::
