+### SearchBar
+This policy can be used to determine if the search bar is separate or combined with the URL bar.
+```
+{
+ "policies": {
+ "SearchBar": ["unified", "separate"]
+ }
+}
+```
+### WebsiteFilter (Machine only)
+This policy blocks websites from being visited. The parameters take an array of Match Patterns, as documented in https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Only http/https addresses are supported at the moment. The arrays are limited to 1000 entries each.
+```
+{
+ "policies": {
+ "WebsiteFilter": {
+ "Block": ["<all_urls>"],
+ "Exceptions": ["http://example.org/*"]
+ }
+ }
+}
+```
+### Search Engines (This policy is only available on the ESR.)
+This policy allows you to add new search engines, remove or hide search engines, as well as set the default and prevent the install of search engines from web pages. Only Name and URLTemplate is required.
+```
+{
+ "policies": {
+ "SearchEngines": {
+ "Add": [
+ {
+ "Name": "",
+ "URLTemplate": "URL including {searchTerms} to substitute for the terms",
+ "Method": ["GET", "POST"],
+ "IconURL": "URL to icon",
+ "Alias": "Alias that can be used to access the engine",
+ "Description": "Description",
+ "SuggestURLTemplate": "URL for suggestions using {searchTerms}"
+ }
+ ],
+ "Default": "Name of engine",
+ "PreventInstalls": [true|false],
+ "Remove": ["Twitter", "Wikipedia (en)"]
+ }
+ }
+}
+```
+### Permissions
+This policy allows you to change the permissions associated with camera, microphone, location, and notifications
+```
+{
+ "policies": {
+ "Permissions": {
+ "Camera": {
+ "Allow": ["http://example.org/"], /* Origins where camera access is allowed by default */
+ "Block": ["http://example.org/"], /* Origins where camera access is blocked by default */
+ "BlockNewRequests": [true|false], /* Block new requests to access the camera */
+ "Locked": [true|false] /* Don't allow the user to change the camera preferences */
+ },
+ "Microphone": {
+ "Allow": ["http://example.org/"], /* Origins where microphone access is allowed by default */
+ "Block": ["http://example.org/"], /* Origins where microphone access is blocked by default */
+ "BlockNewRequests": [true|false], /* Block new requests to access the microphone */
+ "Locked": [true|false] /* Don't allow the user to change the microphone preferences */
+ },
+ "Location": {
+ "Allow": ["http://example.org/"], /* Origins where location access is allowed by default */
+ "Block": ["http://example.org/"], /* Origins where location access is blocked by default */
+ "BlockNewRequests": [true|false], /* Block new requests to access location */
+ "Locked": [true|false] /* Don't allow the user to change the location preferences */
+ },
+ "Notifications": {
+ "Allow": ["http://example.org/"], /* Origins where sending notifications is allowed by default */
+ "Block": ["http://example.org/"], /* Origins where sending notifications is blocked by default */
+ "BlockNewRequests": [true|false], /* Block new requests to send notifications */
+ "Locked": [true|false] /* Don't allow the user to change the notification preferences */
+ }
+ }
+ }
+}
+```