Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / components / policy / resources / policy_templates.json
blob191c9156e21335dc138ed4588303291c916a70d6
2 # policy_templates.json - Metafile for policy templates
4 # The content of this file is evaluated as a Python expression.
6 # This file is used as input to generate the following policy templates:
7 # ADM, ADMX+ADML, MCX/plist and html documentation.
9 # Policy templates are user interface definitions or documents about the
10 # policies that can be used to configure Chrome. Each policy is a name-value
11 # pair where the value has a given type. Chrome looks up the values using the
12 # names of the policies. In the user interface where the values can be set,
13 # related policies might appear together in policy groups. The grouping is not
14 # visible to Chrome.
16 # This file contains a list of policies and groups. Each group contains a list
17 # of policies under the key 'policies'. All the policies and groups must have
18 # unique names. Group names are not exposed to Chrome at all.
20 # Each policy has a type. The currently implemented types:
21 #   'group': - not a real policy, contains a list of policies
22 #     NOTE: Currently nesting groups inside other groups is not supported.
23 #   'string' - a string value
24 #   'int' - an integer value
25 #   'int-enum' - the user can select an integer value from a collection of
26 #     items
27 #   'string-enum' - the user can select a string value from a collection of
28 #     items
29 #   'string-enum-list' - the user can select a set of string values from a
30 #     collection of items
31 #   'main' - a boolean value
32 #   'list' - a list of string values
33 #   'dict' - a dictionary value, containing other values indexed by strings
34 #     NOTE: This type is not supported yet. http://crbug.com/108992
35 #   'external' - a policy that references external data.
36 #     NOTE: This type is currently supported on Chrome OS only.
38 # Policy group descriptions, policy captions and similar texts are localized
39 # strings taken from the <message> nodes of the .grd file. Their name
40 # attributes are generated from the JSON keys.
41 # Each item (policy or group) may have the following messages:
42 #   - description:
43 #     Describes the item it applies to.
44 #   - caption
45 #     A short, one-line summary of the item it applies to. This can appear
46 #     both in policy or group listings or on title bars of policy-setting
47 #     windows.
48 #   - label (Optional, defaults to caption if not specified.)
49 #     A short, one-line summary of the item it applies to. The difference
50 #     from caption is that label always appears next to the entry field
51 #     where the value of the policy can be entered. 'main' policies on
52 #     Windows ignore this. Policies on Mac are using this instead of caption.
54 # Generated grd names:
55 #   Each name has two parts: the second part is either CAPTION, DESC or LABEL,
56 #   and the first part identifies the item the text applies to:
57 #   -For policies and groups:
58 #     IDS_POLICY_<NAME OF THE POLICY OR GROUP>
59 #     e.g. the name of the caption of policy HomepageLocation:
60 #       IDS_POLICY_HOMEPAGELOCATION_CAPTION
61 #     or other messages of the policy HomepageLocation:
62 #       IDS_POLICY_HOMEPAGELOCATION_LABEL
63 #       IDS_POLICY_HOMEPAGELOCATION_DESC
64 #   -For enum items:
65 #     IDS_POLICY_ENUM_<NAME OF THE ITEM>
66 #     e.g. the name of the caption of ProxyServerDisabled:
67 #       IDS_POLICY_ENUM_PROXYSERVERDISABLED_CAPTION
69 # Products and versions:
70 #   Each policy has the list of products and version numbers where it is
71 #   supported under the key 'supported_on'. Each item of this list has the
72 #   form of 'product:since_version-until_version', which means that support
73 #   for the policy in 'product' was introduced in 'since_version' and removed
74 #   after 'until_version'. Product names may contain a suffix specifying a
75 #   platform name, e.g.: 'chrome.win' is read as 'Chrome on Windows'. Version
76 #   numbers can be any string that does not contain ':' or '-' characters.
78 #   Currently supported product names:
79 #       'chrome_frame', 'chrome_os', 'android', 'ios',
80 #       'chrome.win', 'chrome.linux', 'chrome.mac', 'chrome.*'
81 #     For example if 'chrome.*:5-10' is specified for a policy, then it should
82 #     be read as:
83 #       'chrome.linux:5-10', 'chrome.mac:5-10', 'chrome.win:5-10'
85 #   The product name also affects in which templates the policy is included:
86 #     chrome.*, chrome.win, chrome_frame -> ADM, ADMX, ADML, doc
87 #     chrome.*, chrome.linux -> JSON, doc
88 #     chrome.*, chrome.mac -> plist, plist_strings, doc
89 #     everything else -> doc
91 #   The default list of policies supported by Chrome is also generated based
92 #   on the product names:
93 #     chrome.* -> Chrome policy definition list
94 #     chrome_os -> Chrome policy definition list, when building OS_CHROMEOS
96 # Annotations:
97 #   Additional information is specified under keys 'features' and
98 #   'example_value'. These are used in the generated documentation and example
99 #   policy configuration files. 'dynamic_refresh' controls if the generated
100 #   documentation should state that the policy supports dynamic refresh or not.
101 #   Supporting dynamic refresh means that Chrome respects the changes to the
102 #   policy immediately, without the need for restart.
103 #   'can_be_recommended' can be set to True to include that policy in the
104 #   recommended policies templates. This only affects the template generation;
105 #   all policies can be at the recommended level. The default is False.
107 #   The 'max_size' key is used to specify the maximal size of the external data
108 #   that a policy can reference, in bytes. This annotation is compulsory for
109 #   policies of type 'external'. It is ignored for all other policy types.
111 #   The 'future' key is used to indicate that a policy isn't yet ready for
112 #   usage. It defaults to False, and currently affects the generated policy
113 #   templates and documentation. The policy definition list that Chrome sees
114 #   will include policies marked with 'future'. If a WIP policy isn't meant to
115 #   be seen by the policy providers either, the 'supported_on' key should be set
116 #   to an empty list.
118 # IDs:
119 #   Since a Protocol Buffer definition is generated from this file, unique and
120 #   persistent IDs for all fields (but not for groups!) are needed. These are
121 #   specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
122 #   because doing so would break the deployed wire format!
123 #   For your editing convenience: highest ID currently used: 275
125 # Placeholders:
126 #   The following placeholder strings are automatically substituted:
127 #     $1 -> Google Chrome / Chromium
128 #     $2 -> Google Chrome OS / Chromium OS
129 #     $3 -> Google Chrome Frame / Chromium Frame
130 #     $6 is reserved for doc_writer
132 # Device Policy:
133 #   An additional flag device_only (optional, defaults to False) indicates
134 #   that this policy is only supported as a device-level Cloud Policy.
135 #   In that case no entry in the UserPolicy Protobuf is generated and
136 #   it is assumed that it will be added to the DevicePolicy Protobuf manually.
138   'policy_definitions': [
139     {
140       'name': 'Homepage',
141       'type': 'group',
142       'caption': '''Home page''',
143       'desc': '''Configure the default home page in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing it.
145       The user's home page settings are only completely locked down, if you either select the home page to be the new tab page, or set it to be a URL and specify a home page URL. If you don't specify the home page URL, then the user is still able to set the home page to the new tab page by specifying 'chrome://newtab'.''',
146       'policies': [
147         {
148           'name': 'HomepageLocation',
149           'type': 'string',
150           'schema': { 'type': 'string' },
151           'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
152           'features': {
153             'can_be_recommended': True,
154             'dynamic_refresh': True,
155             'per_profile': True,
156           },
157           'example_value': 'http://chromium.org',
158           'id': 1,
159           'caption': '''Configure the home page URL''',
160           'desc': '''Configures the default home page URL in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing it.
162           The home page is the page opened by the Home button. The pages that open on startup are controlled by the RestoreOnStartup policies.
164           The home page type can either be set to a URL you specify here or set to the New Tab Page. If you select the New Tab Page, then this policy does not take effect.
166           If you enable this setting, users cannot change their home page URL in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>, but they can still can choose the New Tab Page as their home page.
168           Leaving this policy not set will allow the user to choose his home page on his own if HomepageIsNewTabPage is not set too.''',
169           'label': '''Home page URL''',
170         },
171         {
172           'name': 'HomepageIsNewTabPage',
173           'type': 'main',
174           'schema': { 'type': 'boolean' },
175           'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
176           'features': {
177             'can_be_recommended': True,
178             'dynamic_refresh': True,
179             'per_profile': True,
180           },
181           'example_value': True,
182           'id': 2,
183           'caption': '''Use New Tab Page as homepage''',
184           'desc': '''Configures the type of the default home page in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing home page preferences. The home page can either be set to a URL you specify or set to the New Tab Page.
186           If you enable this setting, the New Tab Page is always used for the home page, and the home page URL location is ignored.
188           If you disable this setting, the user's homepage will never be the New Tab Page, unless its URL is set to 'chrome://newtab'.
190           If you enable or disable this setting, users cannot change their homepage type in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
192           Leaving this policy not set will allow the user to choose whether the new tab page is his home page on his own.''',
193         },
194       ],
195     },
196     {
197       'name': 'DefaultBrowserSettingEnabled',
198       'type': 'main',
199       'schema': { 'type': 'boolean' },
200       'supported_on': ['chrome.*:11-'],
201       'features': {
202         'dynamic_refresh': True,
203         'per_profile': False,
204       },
205       'example_value': True,
206       'id': 3,
207       'caption': '''Set <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> as Default Browser''',
208       'desc': '''Configures the default browser checks in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing them.
210       If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will always check on startup whether it is the default browser and automatically register itself if possible.
212       If this setting is disabled, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will never check if it is the default browser and will disable user controls for setting this option.
214       If this setting is not set, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will allow the user to control whether it is the default browser and whether user notifications should be shown when it isn't.''',
215       'label': '''Set <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> as Default Browser''',
216     },
217     {
218       'name': 'ApplicationLocaleValue',
219       'type': 'string',
220       'schema': { 'type': 'string' },
221       'supported_on': ['chrome.win:8-'],
222       'features': {
223         'can_be_recommended': True,
224         'dynamic_refresh': False,
225         'per_profile': False,
226       },
227       'example_value': 'en',
228       'id': 4,
229       'caption': '''Application locale''',
230       'desc': '''Configures the application locale in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing the locale.
232       If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> uses the specified locale. If the configured locale is not supported, 'en-US' is used instead.
234       If this setting is disabled or not set, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> uses either the user-specified preferred locale (if configured), the system locale or the fallback locale 'en-US'.''',
235       'label': '''Application locale''',
236     },
237     {
238       'name': 'AlternateErrorPagesEnabled',
239       'type': 'main',
240       'schema': { 'type': 'boolean' },
241       'supported_on': [
242         'chrome.*:8-',
243         'chrome_os:11-',
244         'android:30-',
245       ],
246       'features': {
247         'can_be_recommended': True,
248         'dynamic_refresh': True,
249         'per_profile': True,
250       },
251       'example_value': True,
252       'id': 5,
253       'caption': '''Enable alternate error pages''',
254       'desc': '''Enables the use of alternate error pages that are built into <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> (such as 'page not found') and prevents users from changing this setting.
256       If you enable this setting, alternate error pages are used.
258       If you disable this setting, alternate error pages are never used.
260       If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
262       If this policy is left not set, this will be enabled but the user will be able to change it.''',
263     },
264     {
265       'name': 'SearchSuggestEnabled',
266       'type': 'main',
267       'schema': { 'type': 'boolean' },
268       'supported_on': [
269         'chrome.*:8-',
270         'chrome_os:11-',
271         'android:30-',
272         'ios:34-',
273       ],
274       'features': {
275         'can_be_recommended': True,
276         'dynamic_refresh': True,
277         'per_profile': True,
278       },
279       'example_value': True,
280       'id': 6,
281       'caption': '''Enable search suggestions''',
282       'desc': '''Enables search suggestions in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>'s omnibox and prevents users from changing this setting.
284       If you enable this setting, search suggestions are used.
286       If you disable this setting, search suggestions are never used.
288       If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
290       If this policy is left not set, this will be enabled but the user will be able to change it.''',
291     },
292     {
293       'name': 'DnsPrefetchingEnabled',
294       'type': 'main',
295       'schema': { 'type': 'boolean' },
296       'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
297       'features': {
298         'can_be_recommended': True,
299         'dynamic_refresh': True,
300         'per_profile': True,
301       },
302       'example_value': True,
303       'id': 7,
304       'caption': '''Enable network prediction''',
305       'desc': '''Enables network prediction in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
307       This controls not only DNS prefetching but also TCP and SSL preconnection and prerendering of web pages. The policy name refers to DNS prefetching for historical reasons.
309       If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
311       If this policy is left not set, this will be enabled but the user will be able to change it.''',
312     },
313     {
314       'name': 'NetworkPredictionOptions',
315       'type': 'int-enum',
316       'schema': {
317         'type': 'integer',
318         'enum': [ 0, 1, 2 ],
319       },
320       'items': [
321         {
322           'name': 'NetworkPredictionAlways',
323           'value': 0,
324           'caption': '''Predict network actions on any network connection''',
325         },
326         {
327           'name': 'NetworkPredictionWifiOnly',
328           'value': 1,
329           'caption': '''Predict network actions on any network that is not
330           cellular''',
331         },
332         {
333           'name': 'NetworkPredictionNever',
334           'value': 2,
335           'caption': '''Do not predict network actions on any network connection''',
336         },
337       ],
338       'supported_on': ['chrome.*:38-', 'chrome_os:38-', 'android:38-'],
339       'features': {
340         'can_be_recommended': True,
341         'dynamic_refresh': True,
342         'per_profile': True,
343       },
344       'example_value': 1,
345       'id': 273,
346       'caption': '''Enable network prediction''',
347       'desc': '''Enables network prediction in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
349       This controls DNS prefetching, TCP and SSL preconnection and prerendering of web pages.
351       If you set this preference to 'always', 'never', or 'WiFi only', users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
353       If this policy is left not set, network prediction will be enabled but the user will be able to change it.''',
354     },
355     {
356       'name': 'WPADQuickCheckEnabled',
357       'type': 'main',
358       'schema': { 'type': 'boolean' },
359       'supported_on': [ 'chrome.*:35-', 'chrome_os:35-' ],
360       'features': {
361         'dynamic_refresh': False,
362         'per_profile': False,
363       },
364       'example_value': True,
365       'id': 261,
366       'caption': '''Enable WPAD optimization''',
367       'desc': '''Enables WPAD optimization in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
369       Setting this to enabled causes <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to wait for a shorter interval for DNS-based WPAD servers.
371       If this policy is left not set, this will be enabled and the user will not
372       be able to change it.''',
373     },
374     {
375       'name': 'DisableSpdy',
376       'type': 'main',
377       'schema': { 'type': 'boolean' },
378       'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
379       'features': {
380         'dynamic_refresh': True,
381         'per_profile': False,
382       },
383       'example_value': True,
384       'id': 8,
385       'caption': '''Disable SPDY protocol''',
386       'desc': '''Disables use of the SPDY protocol in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
388       If this policy is enabled the SPDY protocol will not be available in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
390       Setting this policy to disabled will allow the usage of SPDY.
392       If this policy is left not set, SPDY will be available.''',
393     },
394     {
395       'name': 'DisabledSchemes',
396       'type': 'list',
397       'schema': {
398         'type': 'array',
399         'items': { 'type': 'string' },
400       },
401       'supported_on': ['chrome.*:12-', 'chrome_os:12-'],
402       'features': {
403         'dynamic_refresh': True,
404         'per_profile': True,
405       },
406       'deprecated': True,
407       'example_value': ['file', 'https'],
408       'id': 85,
409       'caption': '''Disable URL protocol schemes''',
410       'desc': '''This policy is deprecated, please use URLBlacklist instead.
412       Disables the listed protocol schemes in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
414       URLs using a scheme from this list will not load and can not be navigated to.
416       If this policy is left not set or the list is empty all schemes will be accessible in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''',
417       'label': '''List of disabled protocol schemes''',
418     },
419     {
420       'name': 'JavascriptEnabled',
421       'type': 'main',
422       'schema': { 'type': 'boolean' },
423       'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
424       'features': {
425         'dynamic_refresh': True,
426         'per_profile': True,
427       },
428       'deprecated': True,
429       'example_value': True,
430       'id': 9,
431       'caption': '''Enable JavaScript''',
432       'desc': '''This policy is deprecated, please use DefaultJavaScriptSetting instead.
434       Can be used to disabled JavaScript in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
436       If this setting is disabled, web pages cannot use JavaScript and the user cannot change that setting.
438       If this setting is enabled or not set, web pages can use JavaScript but the user can change that setting.''',
439     },
440     {
441       'name': 'IncognitoEnabled',
442       'type': 'main',
443       'schema': { 'type': 'boolean' },
444       'supported_on': ['chrome.*:11-', 'chrome_os:11-', 'android:30-'],
445       'features': {
446         'dynamic_refresh': True,
447         'per_profile': True,
448       },
449       'deprecated': True,
450       'example_value': False,
451       'id': 10,
452       'caption': '''Enable Incognito mode''',
453       'desc': '''This policy is deprecated. Please, use IncognitoModeAvailability instead.
454       Enables Incognito mode in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
456       If this setting is enabled or not configured, users can open web pages in incognito mode.
458       If this setting is disabled, users cannot open web pages in incognito mode.
460       If this policy is left not set, this will be enabled and the user will be able to use incognito mode.''',
461     },
462     {
463       'name': 'IncognitoModeAvailability',
464       'type': 'int-enum',
465       'schema': {
466         'type': 'integer',
467         'enum': [ 0, 1, 2 ],
468       },
469       'items': [
470         {
471           'name': 'Enabled',
472           'value': 0,
473           'caption': '''Incognito mode available''',
474         },
475         {
476           'name': 'Disabled',
477           'value': 1,
478           'caption': '''Incognito mode disabled''',
479         },
480         {
481           'name': 'Forced',
482           'value': 2,
483           'caption': '''Incognito mode forced''',
484         },
485       ],
486       'supported_on': [
487         'chrome.*:14-',
488         'chrome_os:14-',
489         'android:30-',
490       ],
491       'features': {
492         'dynamic_refresh': True,
493         'per_profile': True,
494       },
495       'example_value': 1,
496       'id': 93,
497       'caption': '''Incognito mode availability''',
498       'desc': '''Specifies whether the user may open pages in Incognito mode in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
500       If 'Enabled' is selected or the policy is left unset, pages may be opened in Incognito mode.
502       If 'Disabled' is selected, pages may not be opened in Incognito mode.
504       If 'Forced' is selected, pages may be opened ONLY in Incognito mode.''',
505     },
506     {
507       'name': 'SavingBrowserHistoryDisabled',
508       'type': 'main',
509       'schema': { 'type': 'boolean' },
510       'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
511       'features': {
512         'dynamic_refresh': True,
513         'per_profile': True,
514       },
515       'example_value': True,
516       'id': 11,
517       'caption': '''Disable saving browser history''',
518       'desc': '''Disables saving browser history in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
520       If this setting is enabled, browsing history is not saved. This setting also disables tab syncing.
522       If this setting is disabled or not set, browsing history is saved.''',
523     },
524     {
525       'name': 'AllowDeletingBrowserHistory',
526       'future': True,
527       'type': 'main',
528       'schema': { 'type': 'boolean' },
529       # TODO(pamg): Restore the correct 'supported' line when the UI properly
530       # shows that deleting browser history is disabled. Also fix the 'os' line
531       # in policy_test_cases.json.
532       # 'supported_on': ['chrome.*:27-', 'chrome_os:27-'],
533       'supported_on': [],
534       'features': {
535         'dynamic_refresh': True,
536         'per_profile': True,
537       },
538       'example_value': True,
539       'id': 187,
540       'caption': '''Enable deleting browser and download history''',
541       'desc': '''Enables deleting browser history and download history in <ph name="PRODUCT_NAME">$<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
543       Note that even with this policy disabled, the browsing and download history are not guaranteed to be retained: users may be able to edit or delete the history database files directly, and the browser itself may expire or archive any or all history items at any time.
545       If this setting is enabled or not set, browsing and download history can be deleted.
547       If this setting is disabled, browsing and download history cannot be deleted.''',
548     },
549     {
550       'name': 'RemoteAccess',
551       'type': 'group',
552       'caption': '''Configure remote access options''',
553       'desc': '''Configure remote access options in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
555       These features are ignored unless the Remote Access web application is installed.''',
556       'policies': [
557         {
558           'name': 'RemoteAccessClientFirewallTraversal',
559           'type': 'main',
560           'schema': { 'type': 'boolean' },
561           'supported_on': ['chrome.*:14-', 'chrome_os:14-'],
562           'features': {
563             'dynamic_refresh': True,
564           },
565           # Mark this 'removed' when http://crbug.com/100216 is resolved.
566           'deprecated': True,
567           'example_value': False,
568           'id': 94,
569           'caption': '''Enable firewall traversal from remote access client''',
570           'desc': '''This policy is no longer supported.
571           Enables usage of STUN and relay servers when connecting to a remote client.
573           If this setting is enabled, then this machine can discover and connect to remote host machines even if they are separated by a firewall.
575           If this setting is disabled and outgoing UDP connections are filtered by the firewall, then this machine can only connect to host machines within the local network.''',
576         },
577         {
578           'name': 'RemoteAccessHostFirewallTraversal',
579           'type': 'main',
580           'schema': { 'type': 'boolean' },
581           'supported_on': ['chrome.*:14-'],
582           'features': {
583             'dynamic_refresh': True,
584             'per_profile': False,
585           },
586           'example_value': False,
587           'id': 95,
588           'caption': '''Enable firewall traversal from remote access host''',
589           'desc': '''Enables usage of STUN servers when remote clients are trying to establish a connection to this machine.
591           If this setting is enabled, then remote clients can discover and connect to this machines even if they are separated by a firewall.
593           If this setting is disabled and outgoing UDP connections are filtered by the firewall, then this machine will only allow connections from client machines within the local network.
595           If this policy is left not set the setting will be enabled.''',
596         },
597         {
598           'name': 'RemoteAccessHostDomain',
599           'type': 'string',
600           'schema': { 'type': 'string' },
601           'supported_on': ['chrome.*:22-'],
602           'features': {
603             'dynamic_refresh': True,
604             'per_profile': False,
605           },
606           'example_value': 'my-awesome-domain.com',
607           'id': 154,
608           'caption': '''Configure the required domain name for remote access hosts''',
609           'desc': '''Configures the required host domain name that will be imposed on remote access hosts and prevents users from changing it.
611           If this setting is enabled, then hosts can be shared only using accounts registered on the specified domain name.
613           If this setting is disabled or not set, then hosts can be shared using any account.''',
614         },
615         {
616           'name': 'RemoteAccessHostRequireTwoFactor',
617           'type': 'main',
618           'schema': { 'type': 'boolean' },
619           'supported_on': ['chrome.*:22-'],
620           'features': {
621             'dynamic_refresh': True,
622             'per_profile': False,
623           },
624           'example_value': False,
625           'id': 155,
626           'caption': '''Enable two-factor authentication for remote access hosts''',
627           'desc': '''Enables two-factor authentication for remote access hosts instead of a user-specified PIN.
629           If this setting is enabled, then users must provide a valid two-factor code when accessing a host.
631           If this setting is disabled or not set, then two-factor will not be enabled and the default behavior of having a user-defined PIN will be used.''',
632         },
633         {
634           'name': 'RemoteAccessHostTalkGadgetPrefix',
635           'type': 'string',
636           'schema': { 'type': 'string' },
637           'supported_on': ['chrome.*:22-'],
638           'features': {
639             'dynamic_refresh': True,
640             'per_profile': False,
641           },
642           'example_value': 'chromoting-host',
643           'id': 156,
644           'caption': '''Configure the TalkGadget prefix for remote access hosts''',
645           'desc': '''Configures the TalkGadget prefix that will be used by remote access hosts and prevents users from changing it.
647           If specified, this prefix is prepended to the base TalkGadget name to create a full domain name for the TalkGadget. The base TalkGadget domain name is '.talkgadget.google.com'.
649           If this setting is enabled, then hosts will use the custom domain name when accessing the TalkGadget instead of the default domain name.
651           If this setting is disabled or not set, then the default TalkGadget domain name ('chromoting-host.talkgadget.google.com') will be used for all hosts.
653           Remote access clients are not affected by this policy setting. They will always use 'chromoting-client.talkgadget.google.com' to access the TalkGadget.''',
654         },
655         {
656           'name': 'RemoteAccessHostRequireCurtain',
657           'type': 'main',
658           'schema': { 'type': 'boolean' },
659           'supported_on': ['chrome.*:23-'],
660           'features': {
661             'dynamic_refresh': True,
662             'per_profile': False,
663           },
664           'example_value': False,
665           'id': 157,
666           'caption': '''Enable curtaining of remote access hosts''',
667           'desc': '''Enables curtaining of remote access hosts while a connection is in progress.
669           If this setting is enabled, then hosts' physical input and output devices are disabled while a remote connection is in progress.
671           If this setting is disabled or not set, then both local and remote users can interact with the host when it is being shared.''',
672         },
673         {
674           'name': 'RemoteAccessHostAllowClientPairing',
675           'type': 'main',
676           'schema': { 'type': 'boolean' },
677           'supported_on': ['chrome.*:30-'],
678           'features': {
679             'dynamic_refresh': True,
680             'per_profile': False,
681           },
682           'example_value': False,
683           'id': 234,
684           'caption': '''Enable or disable PIN-less authentication''',
685           'desc': '''If this setting is enabled or not configured, then users can opt to pair clients and hosts at connection time, eliminating the need to enter a PIN every time.
687           If this setting is disabled, then this feature will not be available.''',
688         },
689         {
690           'name': 'RemoteAccessHostAllowGnubbyAuth',
691           'type': 'main',
692           'schema': { 'type': 'boolean' },
693           'supported_on': ['chrome.*:35-'],
694           'features': {
695             'dynamic_refresh': True,
696             'per_profile': False,
697           },
698           'example_value': True,
699           'id': 257,
700           'caption': '''Allow gnubby authentication''',
701           'desc': '''If this setting is enabled, then gnubby authentication requests will be proxied across a remote host connection.
703           If this setting is disabled or not configured, gnubby authentication requests will not be proxied.''',
704         },
705         {
706           'name': 'RemoteAccessHostAllowRelayedConnection',
707           'type': 'main',
708           'schema': { 'type': 'boolean' },
709           'supported_on': ['chrome.*:36-'],
710           'features': {
711             'dynamic_refresh': True,
712             'per_profile': False,
713           },
714           'example_value': False,
715           'id': 263,
716           'caption': '''Enable the use of relay servers by the remote access host''',
717           'desc': '''Enables usage of relay servers when remote clients are trying to establish a connection to this machine.
719           If this setting is enabled, then remote clients can use relay servers to connect to this machine when a direct connection is not available (e.g. due to firewall restrictions).
721           Note that if the policy <ph name="REMOTEACCESSHOSTFIREWALLTRAVERSAL_POLICY_NAME">RemoteAccessHostFirewallTraversal</ph> is disabled, this policy will be ignored.
723           If this policy is left not set the setting will be enabled.''',
724         },
725         {
726           'name': 'RemoteAccessHostUdpPortRange',
727           'type': 'string',
728           'schema': { 'type': 'string' },
729           'supported_on': ['chrome.*:36-'],
730           'features': {
731             'dynamic_refresh': True,
732             'per_profile': False,
733           },
734           'example_value': '12400-12409',
735           'id': 264,
736           'caption': '''Restrict the UDP port range used by the remote access host''',
737           'desc': '''Restricts the UDP port range used by the remote access host in this machine.
739           If this policy is left not set, or if it is set to an empty string, the remote access host will be allowed to use any available port, unless the policy <ph name="REMOTEACCESSHOSTFIREWALLTRAVERSAL_POLICY_NAME">RemoteAccessHostFirewallTraversal</ph> is disabled, in which case the remote access host will use UDP ports in the 12400-12409 range.''',
740         },
741       ],
742     },
743     {
744       'name': 'PrintingEnabled',
745       'type': 'main',
746       'schema': { 'type': 'boolean' },
747       'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
748       'features': {
749         'dynamic_refresh': True,
750         'per_profile': True,
751       },
752       'example_value': True,
753       'id': 12,
754       'caption': '''Enable printing''',
755       'desc': '''Enables printing in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
757       If this setting is enabled or not configured, users can print.
759       If this setting is disabled, users cannot print from <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. Printing is disabled in the wrench menu, extensions, JavaScript applications, etc. It is still possible to print from plugins that bypass <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> while printing. For example, certain Flash applications have the print option in their context menu, which is not covered by this policy.''',
760     },
761     {
762       'name': 'CloudPrintProxyEnabled',
763       'type': 'main',
764       'schema': { 'type': 'boolean' },
765       'supported_on': ['chrome.*:17-'],
766       'features': {
767         'dynamic_refresh': True,
768         'per_profile': True,
769       },
770       'example_value': True,
771       'id': 13,
772       'caption': '''Enable <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> proxy''',
773       'desc': '''Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to act as a proxy between <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> and legacy printers connected to the machine.
775       If this setting is enabled or not configured, users can enable the cloud print proxy by authentication with their Google account.
777       If this setting is disabled, users cannot enable the proxy, and the machine will not be allowed to share it's printers with <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph>.''',
778     },
779     {
780       'name': 'ForceSafeSearch',
781       'type': 'main',
782       'schema': { 'type': 'boolean' },
783       'supported_on': ['chrome.*:25-', 'chrome_os:25-', 'android:30-'],
784       'features': {
785         'can_be_recommended': False,
786         'dynamic_refresh': True,
787         'per_profile': True,
788       },
789       'example_value': False,
790       'id': 162,
791       'caption': '''Force SafeSearch''',
792       'desc': '''Forces queries in Google Web Search to be done with SafeSearch set to active and prevents users from changing this setting.
794       If you enable this setting, SafeSearch in Google Search is always active.
796       If you disable this setting or do not set a value, SafeSearch in Google Search is not enforced.''',
797     },
798     {
799       'name': 'SafeBrowsingEnabled',
800       'type': 'main',
801       'schema': { 'type': 'boolean' },
802       'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
803       'features': {
804         'can_be_recommended': True,
805         'dynamic_refresh': True,
806         'per_profile': True,
807       },
808       'example_value': True,
809       'id': 14,
810       'caption': '''Enable Safe Browsing''',
811       'desc': '''Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>'s Safe Browsing feature and prevents users from changing this setting.
813       If you enable this setting, Safe Browsing is always active.
815       If you disable this setting, Safe Browsing is never active.
817       If you enable or disable this setting, users cannot change or override the "Enable phishing and malware protection" setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
819       If this policy is left not set, this will be enabled but the user will be able to change it.''',
820     },
821     {
822       'name': 'MetricsReportingEnabled',
823       'type': 'main',
824       'schema': { 'type': 'boolean' },
825       'supported_on': ['chrome.*:8-'],
826       'features': {
827         'can_be_recommended': True,
828         'dynamic_refresh': False,
829         'per_profile': False,
830       },
831       'example_value': True,
832       'id': 15,
833       'caption': '''Enable reporting of usage and crash-related data''',
834       'desc': '''Enables anonymous reporting of usage and crash-related data about <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to Google and prevents users from changing this setting.
836       If you enable this setting, anonymous reporting of usage and crash-related data is sent to Google.
838       If you disable this setting, anonymous reporting of usage and crash-related data is never sent to Google.
840       If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
842       If this policy is left not set the setting will be what the user chose upon installation / first run.''',
843     },
844     {
845       'name': 'PasswordManager',
846       'type': 'group',
847       'caption': '''Password manager''',
848       'desc': '''Configures the password manager. If the password manager is enabled, then you can choose to enable or disable whether the user may show stored passwords in clear text.''',
849       'policies': [
850         {
851           'name': 'PasswordManagerEnabled',
852           'type': 'main',
853           'schema': { 'type': 'boolean' },
854           'supported_on': [
855             'chrome.*:8-',
856             'chrome_os:11-',
857             'android:30-',
858             'ios:34-',
859           ],
860           'features': {
861             'can_be_recommended': True,
862             'dynamic_refresh': True,
863             'per_profile': True,
864           },
865           'example_value': True,
866           'id': 16,
867           'caption': '''Enable the password manager''',
868           'desc': '''Enables saving passwords and using saved passwords in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
870           If you enable this setting, users can have <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> memorize passwords and provide them automatically the next time they log in to a site.
872           If you disable this setting, users are not able to save passwords or use already saved passwords.
874           If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
876           If this policy is left not set, this will be enabled but the user will be able to change it.''',
877         },
878         {
879           'name': 'PasswordManagerAllowShowPasswords',
880           'type': 'main',
881           'schema': { 'type': 'boolean' },
882           'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
883           'features': {
884             'dynamic_refresh': True,
885             'per_profile': True,
886           },
887           'example_value': False,
888           'id': 17,
889           'caption': '''Allow users to show passwords in Password Manager''',
890           'desc': '''Controls whether the user may show passwords in clear text in the password manager.
892           If you disable this setting, the password manager does not allow showing stored passwords in clear text in the password manager window.
894           If you enable or do not set this policy, users can view their passwords in clear text in the password manager.''',
895         },
896       ],
897     },
898     {
899       'name': 'AutoFillEnabled',
900       'type': 'main',
901       'schema': { 'type': 'boolean' },
902       'supported_on': [
903         'chrome.*:8-',
904         'chrome_os:11-',
905         'android:30-',
906         'ios:34-',
907       ],
908       'features': {
909         'can_be_recommended': True,
910         'dynamic_refresh': True,
911         'per_profile': True,
912       },
913       'example_value': False,
914       'id': 18,
915       'caption': '''Enable AutoFill''',
916       'desc': '''Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>'s AutoFill feature and allows users to auto complete web forms using previously stored information such as address or credit card information.
918       If you disable this setting, AutoFill will be inaccessible to users.
920       If you enable this setting or do not set a value, AutoFill will remain under the control of the user. This will allow them to configure AutoFill profiles and to switch AutoFill on or off at their own discretion.''',
921     },
922     {
923       'name': 'DisabledPlugins',
924       'type': 'list',
925       'schema': {
926         'type': 'array',
927         'items': { 'type': 'string' },
928       },
929       'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
930       'features': {
931         'dynamic_refresh': True,
932         'per_profile': True,
933       },
934       'example_value': ['Java', 'Shockwave Flash', 'Chrome PDF Viewer'],
935       'id': 19,
936       'caption': '''Specify a list of disabled plugins''',
937       'desc': '''Specifies a list of plugins that are disabled in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
939       The wildcard characters '*' and '?' can be used to match sequences of arbitrary characters. '*' matches an arbitrary number of characters while '?' specifies an optional single character, i.e. matches zero or one characters. The escape character is '\\', so to match actual '*', '?', or '\\' characters, you can put a '\\' in front of them.
941       If you enable this setting, the specified list of plugins is never used in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. The plugins are marked as disabled in 'about:plugins' and users cannot enable them.
943       Note that this policy can be overridden by EnabledPlugins and DisabledPluginsExceptions.
945       If this policy is left not set the user can use any plugin installed on the system except for hard-coded incompatible, outdated or dangerous plugins.''',
946       'label': '''List of disabled plugins''',
947     },
948     {
949       'name': 'EnabledPlugins',
950       'type': 'list',
951       'schema': {
952         'type': 'array',
953         'items': { 'type': 'string' },
954       },
955       'supported_on': ['chrome.*:11-', 'chrome_os:11-'],
956       'features': {
957         'dynamic_refresh': True,
958         'per_profile': True,
959       },
960       'example_value': ['Java', 'Shockwave Flash', 'Chrome PDF Viewer'],
961       'id': 78,
962       'caption': '''Specify a list of enabled plugins''',
963       'desc': '''Specifies a list of plugins that are enabled in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
965       The wildcard characters '*' and '?' can be used to match sequences of arbitrary characters. '*' matches an arbitrary number of characters while '?' specifies an optional single character, i.e. matches zero or one characters. The escape character is '\\', so to match actual '*', '?', or '\\' characters, you can put a '\\' in front of them.
967       The specified list of plugins is always used in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> if they are installed. The plugins are marked as enabled in 'about:plugins' and users cannot disable them.
969       Note that this policy overrides both DisabledPlugins and DisabledPluginsExceptions.
971       If this policy is left not set the user can disable any plugin installed on the system.''',
972       'label': '''List of enabled plugins''',
973     },
974     {
975       'name': 'DisabledPluginsExceptions',
976       'type': 'list',
977       'schema': {
978         'type': 'array',
979         'items': { 'type': 'string' },
980       },
981       'supported_on': ['chrome.*:11-', 'chrome_os:11-'],
982       'features': {
983         'dynamic_refresh': True,
984         'per_profile': True,
985       },
986       'example_value': ['Java', 'Shockwave Flash', 'Chrome PDF Viewer'],
987       'id': 79,
988       'caption': '''Specify a list of plugins that the user can enable or disable''',
989       'desc': '''Specifies a list of plugins that user can enable or disable in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
991       The wildcard characters '*' and '?' can be used to match sequences of arbitrary characters. '*' matches an arbitrary number of characters while '?' specifies an optional single character, i.e. matches zero or one characters. The escape character is '\\', so to match actual '*', '?', or '\\' characters, you can put a '\\' in front of them.
993       If you enable this setting, the specified list of plugins can be used in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. Users can enable or disable them in 'about:plugins', even if the plugin also matches a pattern in DisabledPlugins. Users can also enable and disable plugins that don't match any patterns in DisabledPlugins, DisabledPluginsExceptions and EnabledPlugins.
995       This policy is meant to allow for strict plugin blacklisting where the 'DisabledPlugins' list contains wildcarded entries like disable all plugins '*' or disable all Java plugins '*Java*' but the administrator wishes to enable some particular version like 'IcedTea Java 2.3'. This particular versions can be specified in this policy.
997       Note that both the plugin name and the plugin's group name have to be exempted. Each plugin group is shown in a separate section in about:plugins; each section may have one or more plugins. For example, the "Shockwave Flash" plugin belongs to the "Adobe Flash Player" group, and both names have to have a match in the exceptions list if that plugin is to be exempted from the blacklist.
999       If this policy is left not set any plugin that matches the patterns in the 'DisabledPlugins' will be locked disabled and the user won't be able to enable them.''',
1000       'label': '''List of exceptions to the list of disabled plugins''',
1001     },
1002     {
1003       'name': 'DisablePluginFinder',
1004       'type': 'main',
1005       'schema': { 'type': 'boolean' },
1006       'supported_on': ['chrome.*:11-', 'chrome_os:11-'],
1007       'features': {
1008         'dynamic_refresh': True,
1009         'per_profile': False,
1010       },
1011       'example_value': True,
1012       'id': 66,
1013       'caption': '''Specify whether the plugin finder should be disabled''',
1014       'desc': '''If you set this setting to enabled the automatic search and installation of missing plugins will be disabled in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1016       Setting this option to disabled or leave it not set the plugin finder will be active.''',
1017       'label': '''Disable plugin finder''',
1018     },
1019     {
1020       'name': 'SyncDisabled',
1021       'type': 'main',
1022       'schema': { 'type': 'boolean' },
1023       'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
1024       'features': {
1025         'dynamic_refresh': True,
1026         'per_profile': True,
1027       },
1028       'example_value': True,
1029       'id': 20,
1030       'caption': '''Disable synchronization of data with Google''',
1031       'desc': '''Disables data synchronization in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> using Google-hosted synchronization services and prevents users from changing this setting.
1033       If you enable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1035       If this policy is left not set Google Sync will be available for the user to choose whether to use it or not.''',
1036     },
1037     {
1038       'name': 'SigninAllowed',
1039       'type': 'main',
1040       'schema': { 'type': 'boolean' },
1041       'supported_on': ['chrome.*:27-', 'android:38-'],
1042       'features': {
1043         'dynamic_refresh': True,
1044         'per_profile': True,
1045       },
1046       'example_value': True,
1047       'id': 190,
1048       'caption': '''Allows sign in to <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>''',
1049       'desc': '''Allows the user to sign in to <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
1051       If you set this policy, you can configure if a user is allowed to sign in to <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> or not.''',
1052     },
1053     {
1054       'name': 'EnableWebBasedSignin',
1055       'type': 'main',
1056       'schema': { 'type': 'boolean' },
1057       'supported_on': ['chrome.*:35-'],
1058       'features': {
1059         'dynamic_refresh': False,
1060         'per_profile': False,
1061       },
1062       'example_value': False,
1063       'id': 265,
1064       'caption': '''Enables the old web-based signin''',
1065       'desc': '''Enables the old web-based signin flow.
1067       This setting is useful for enterprise customers who are using SSO solutions that are not compatible with the new inline signin flow yet.
1068       If you enable this setting, the old web-based signin flow would be used.
1069       If you disable this setting or leave it not set, the new inline signin flow would be used by default. Users may still enable the old web-based signin flow through the command line flag --enable-web-based-signin.
1071       The experimental setting will be removed in the future when the inline signin fully supports all SSO signin flows.''',
1072     },
1073     {
1074       'name': 'UserDataDir',
1075       'type': 'string',
1076       'schema': { 'type': 'string' },
1077       'supported_on': ['chrome.win:11-', 'chrome.mac:11-'],
1078       'features': {
1079         'dynamic_refresh': False,
1080         'per_profile': False,
1081       },
1082       'example_value': '${users}/${user_name}/Chrome',
1083       'id': 63,
1084       'caption': '''Set user data directory''',
1085       'desc': '''Configures the directory that <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use for storing user data.
1087       If you set this policy, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use the provided directory regardless whether the user has specified the '--user-data-dir' flag or not.
1089       See http://www.chromium.org/administrators/policy-list-3/user-data-directory-variables for a list of variables that can be used.
1091       If this policy is left not set the default profile path will be used and the user will be able to override it with the '--user-data-dir' command line flag.''',
1092       'label': '''Set user data directory''',
1093     },
1094     {
1095       'name': 'DiskCacheDir',
1096       'type': 'string',
1097       'schema': { 'type': 'string' },
1098       'supported_on': ['chrome.*:13-'],
1099       'features': {
1100         'dynamic_refresh': False,
1101         'per_profile': False,
1102       },
1103       'example_value': '${user_home}/Chrome_cache',
1104       'id': 88,
1105       'caption': '''Set disk cache directory''',
1106       'desc': '''Configures the directory that <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use for storing cached files on the disk.
1108       If you set this policy, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use the provided directory regardless whether the user has specified the '--disk-cache-dir' flag or not.
1110       See http://www.chromium.org/administrators/policy-list-3/user-data-directory-variables for a list of variables that can be used.
1112       If this policy is left not set the default cache directory will be used and the user will be able to override it with the '--disk-cache-dir' command line flag.''',
1113       'label': '''Set disk cache directory''',
1114     },
1115     {
1116       'name': 'DiskCacheSize',
1117       'type': 'int',
1118       'schema': { 'type': 'integer' },
1119       'supported_on': ['chrome.*:17-'],
1120       'features': {
1121         'dynamic_refresh': False,
1122         'per_profile': False,
1123       },
1124       'example_value': 104857600,
1125       'id': 110,
1126       'caption': '''Set disk cache size in bytes''',
1127       'desc': '''Configures the cache size that <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use for storing cached files on the disk.
1129       If you set this policy, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use the provided cache size regardless whether the user has specified the '--disk-cache-size' flag or not. The value specified in this policy is not a hard boundary but rather a suggestion to the caching system, any value below a few megabytes is too small and will be rounded up to a sane minimum.
1131       If the value of this policy is 0, the default cache size will be used but the user will not be able to change it.
1133       If this policy is not set the default size will be used and the user will be able to override it with the --disk-cache-size flag.''',
1134       'label': '''Set disk cache size''',
1135     },
1136     {
1137       'name': 'MediaCacheSize',
1138       'type': 'int',
1139       'schema': { 'type': 'integer' },
1140       'supported_on': ['chrome.*:17-'],
1141       'features': {
1142         'dynamic_refresh': False,
1143         'per_profile': False,
1144       },
1145       'example_value': 104857600,
1146       'id': 111,
1147       'caption': '''Set media disk cache size in bytes''',
1148       'desc': '''Configures the cache size that <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use for storing cached media files on the disk.
1150       If you set this policy, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use the provided cache size regardless whether the user has specified the '--media-cache-size' flag or not. The value specified in this policy is not a hard boundary but rather a suggestion to the caching system, any value below a few megabytes is too small and will be rounded up to a sane minimum.
1152       If the value of this policy is 0, the default cache size will be used but the user will not be able to change it.
1154       If this policy is not set the default size will be used and the user will be able to override it with the --media-cache-size flag.''',
1155       'label': '''Set media disk cache size''',
1156     },
1157     {
1158       'name': 'DownloadDirectory',
1159       'type': 'string',
1160       'schema': { 'type': 'string' },
1161       'supported_on': ['chrome.*:11-', 'chrome_os:35-'],
1162       'features': {
1163         'can_be_recommended': True,
1164         'dynamic_refresh': True,
1165         'per_profile': True,
1166       },
1167       'example_value': '/home/${user_name}/Downloads',
1168       'id': 64,
1169       'caption': '''Set download directory''',
1170       'desc': '''Configures the directory that <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use for downloading files.
1172       If you set this policy, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use the provided directory regardless whether the user has specified one or enabled the flag to be prompted for download location every time.
1174       See http://www.chromium.org/administrators/policy-list-3/user-data-directory-variables for a list of variables that can be used.
1176       If this policy is left not set the default download directory will be used and the user will be able to change it.''',
1177       'label': '''Set download directory''',
1178     },
1179     {
1180       'name': 'ClearSiteDataOnExit',
1181       'type': 'main',
1182       'schema': { 'type': 'boolean' },
1183       'supported_on': ['chrome.*:11-28', 'chrome_os:11-28'],
1184       'features': {
1185         'can_be_recommended': True,
1186         'dynamic_refresh': True,
1187         'per_profile': True,
1188       },
1189       'deprecated': True,
1190       'example_value': True,
1191       'id': 65,
1192       'caption': '''Clear site data on browser shutdown (deprecated)''',
1193       'desc': '''This policy has been retired as of <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> version 29.''',
1194       'label': '''Clear site data on browser shutdown (deprecated)''',
1195     },
1196     {
1197       'name': 'Proxy',
1198       'type': 'group',
1199       'caption': '''Proxy server''',
1200       'desc': '''Allows you to specify the proxy server used by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing proxy settings.
1202       If you choose to never use a proxy server and always connect directly, all other options are ignored.
1204       If you choose to auto detect the proxy server, all other options are ignored.
1206       For detailed examples, visit:
1207       <ph name="PROXY_HELP_URL">http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett<ex>http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>
1209       If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> ignores all proxy-related options specified from the command line.
1211       Leaving these policies not set will allow the users to choose the proxy settings on their own.''',
1212       'policies': [
1213         {
1214           'name': 'ProxyMode',
1215           'type': 'string-enum',
1216           'schema': {
1217             'type': 'string',
1218             'enum': [
1219               'direct',
1220               'auto_detect',
1221               'pac_script',
1222               'fixed_servers',
1223               'system'
1224             ],
1225           },
1226           'items': [
1227             {
1228               'name': 'ProxyDisabled',
1229               'value': 'direct',
1230               'caption': '''Never use a proxy''',
1231             },
1232             {
1233               'name': 'ProxyAutoDetect',
1234               'value': 'auto_detect',
1235               'caption': '''Auto detect proxy settings''',
1236             },
1237             {
1238               'name': 'ProxyPacScript',
1239               'value': 'pac_script',
1240               'caption': '''Use a .pac proxy script''',
1241             },
1242             {
1243               'name': 'ProxyFixedServers',
1244               'value': 'fixed_servers',
1245               'caption': '''Use fixed proxy servers''',
1246             },
1247             {
1248               'name': 'ProxyUseSystem',
1249               'value': 'system',
1250               'caption': '''Use system proxy settings''',
1251             },
1252           ],
1253           'supported_on': [
1254             'chrome.*:10-',
1255             'chrome_os:11-',
1256             'android:30-',
1257             'ios:34-',
1258           ],
1259           'features': {
1260             'dynamic_refresh': True,
1261             'per_profile': True,
1262           },
1263           'example_value': 'direct',
1264           'id': 21,
1265           'caption': '''Choose how to specify proxy server settings''',
1266           'desc': '''Allows you to specify the proxy server used by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing proxy settings.
1268           If you choose to never use a proxy server and always connect directly, all other options are ignored.
1270           If you choose to use system proxy settings or auto detect the proxy server, all other options are ignored.
1272           If you choose fixed server proxy mode, you can specify further options in 'Address or URL of proxy server' and 'Comma-separated list of proxy bypass rules'.
1274           If you choose to use a .pac proxy script, you must specify the URL to the script in 'URL to a proxy .pac file'.
1276           For detailed examples, visit:
1277           <ph name="PROXY_HELP_URL">http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett<ex>http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>
1279           If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> ignores all proxy-related options specified from the command line.
1281           Leaving this policy not set will allow the users to choose the proxy settings on their own.''',
1282         },
1283         {
1284           'name': 'ProxyServerMode',
1285           'type': 'int-enum',
1286           'schema': {
1287             'type': 'integer',
1288             'enum': [ 0, 1, 2, 3 ],
1289           },
1290           'items': [
1291             {
1292               'name': 'ProxyServerDisabled',
1293               'value': 0,
1294               'caption': '''Never use a proxy''',
1295             },
1296             {
1297               'name': 'ProxyServerAutoDetect',
1298               'value': 1,
1299               'caption': '''Auto detect proxy settings''',
1300             },
1301             {
1302               'name': 'ProxyServerManual',
1303               'value': 2,
1304               'caption': '''Manually specify proxy settings''',
1305             },
1306             {
1307               'name': 'ProxyServerUseSystem',
1308               'value': 3,
1309               'caption': '''Use system proxy settings''',
1310             },
1311           ],
1312           'supported_on': [
1313             'chrome.*:8-',
1314             'chrome_os:11-',
1315             'android:30-',
1316             'ios:34-',
1317           ],
1318           'features': {
1319             'dynamic_refresh': True,
1320             'per_profile': True,
1321           },
1322           'deprecated': True,
1323           'example_value': 2,
1324           'id': 22,
1325           'caption': '''Choose how to specify proxy server settings''',
1326           'desc': '''This policy is deprecated, use ProxyMode instead.
1328           Allows you to specify the proxy server used by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing proxy settings.
1330           If you choose to never use a proxy server and always connect directly, all other options are ignored.
1332           If you choose to use system proxy settings or auto detect the proxy server, all other options are ignored.
1334           If you choose manual proxy settings, you can specify further options in 'Address or URL of proxy server', 'URL to a proxy .pac file' and 'Comma-separated list of proxy bypass rules'.
1336           For detailed examples, visit:
1337           <ph name="PROXY_HELP_URL">http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett<ex>http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>
1339           If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> ignores all proxy-related options specified from the command line.
1341           Leaving this policy not set will allow the users to choose the proxy settings on their own.''',
1342         },
1343         {
1344           'name': 'ProxyServer',
1345           'type': 'string',
1346           'schema': { 'type': 'string' },
1347           'supported_on': [
1348             'chrome.*:8-',
1349             'chrome_os:11-',
1350             'android:30-',
1351             'ios:34-',
1352           ],
1353           'features': {
1354             'dynamic_refresh': True,
1355             'per_profile': True,
1356           },
1357           'example_value': '123.123.123.123:8080',
1358           'id': 23,
1359           'caption': '''Address or URL of proxy server''',
1360           'desc': '''You can specify the URL of the proxy server here.
1362           This policy only takes effect if you have selected manual proxy settings at 'Choose how to specify proxy server settings'.
1364           You should leave this policy not set if you have selected any other mode for setting proxy policies.
1366           For more options and detailed examples, visit:
1367           <ph name="PROXY_HELP_URL">http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett<ex>http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>''',
1368         },
1369         {
1370           'name': 'ProxyPacUrl',
1371           'type': 'string',
1372           'schema': { 'type': 'string' },
1373           'supported_on': [
1374             'chrome.*:8-',
1375             'chrome_os:11-',
1376             'android:30-',
1377             'ios:34-',
1378           ],
1379           'features': {
1380             'dynamic_refresh': True,
1381             'per_profile': True,
1382           },
1383           'example_value': 'http://internal.site/example.pac',
1384           'id': 24,
1385           'caption': '''URL to a proxy .pac file''',
1386           'desc': '''You can specify a URL to a proxy .pac file here.
1388           This policy only takes effect if you have selected manual proxy settings at 'Choose how to specify proxy server settings'.
1390           You should leave this policy not set if you have selected any other mode for setting proxy policies.
1392           For detailed examples, visit:
1393           <ph name="PROXY_HELP_URL">http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett<ex>http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>''',
1394         },
1395         {
1396           'name': 'ProxyBypassList',
1397           'type': 'string',
1398           'schema': { 'type': 'string' },
1399           'supported_on': [
1400             'chrome.*:8-',
1401             'chrome_os:11-',
1402             'android:30-',
1403             'ios:34-',
1404           ],
1405           'features': {
1406             'dynamic_refresh': True,
1407             'per_profile': True,
1408           },
1409           'example_value': 'http://www.example1.com,http://www.example2.com,http://internalsite/',
1410           'id': 25,
1411           'caption': '''Proxy bypass rules''',
1412           'desc': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will bypass any proxy for the list of hosts given here.
1414           This policy only takes effect if you have selected manual proxy settings at 'Choose how to specify proxy server settings'.
1416           You should leave this policy not set if you have selected any other mode for setting proxy policies.
1418           For more detailed examples, visit:
1419           <ph name="PROXY_HELP_URL">http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett<ex>http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>''',
1420           'label': '''Comma-separated list of proxy bypass rules''',
1421         },
1422       ],
1423     },
1424     {
1425       # TODO(joaodasilva): Make this the default and deprecate the other proxy
1426       # policies once all providers are ready to load 'dict' policies.
1427       # This is currently an internal policy.
1428       # http://crbug.com/108992, http://crbug.com/108996
1429       'name': 'ProxySettings',
1430       'type': 'dict',
1431       'schema': {
1432         'type': 'object',
1433         'properties': {
1434           'ProxyMode': { 'type': 'string' },
1435           'ProxyPacUrl': { 'type': 'string' },
1436           'ProxyServer': { 'type': 'string' },
1437           'ProxyBypassList': { 'type': 'string' },
1438           'ProxyServerMode': { 'type': 'string' },
1439         },
1440       },
1441       'supported_on': [
1442         'chrome.*:18-',
1443         'chrome_os:18-',
1444         'android:30-',
1445         'ios:34-',
1446       ],
1447       'future': True,
1448       'features': {
1449         'dynamic_refresh': True,
1450         'per_profile': True,
1451       },
1452       'example_value': { "ProxyMode": "direct" },
1453       'id': 116,
1454       'caption': '''Proxy settings''',
1455       'desc': '''Configures the proxy settings for <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1457       This policy isn't ready for usage yet, please don't use it.''',
1458     },
1459     {
1460       'name': 'HTTPAuthentication',
1461       'type': 'group',
1462       'caption': '''Policies for HTTP Authentication''',
1463       'desc': '''Policies related to integrated HTTP authentication.''',
1464       'policies': [
1465         {
1466           'name': 'AuthSchemes',
1467           'type': 'string',
1468           'schema': { 'type': 'string' },
1469           'supported_on': ['chrome.*:9-'],
1470           'features': {
1471             'dynamic_refresh': False,
1472             'per_profile': False,
1473           },
1474           'example_value': 'basic,digest,ntlm,negotiate',
1475           'id': 26,
1476           'caption': '''Supported authentication schemes''',
1477           'desc': '''Specifies which HTTP Authentication schemes are supported by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1479           Possible values are 'basic', 'digest', 'ntlm' and 'negotiate'. Separate multiple values with commas.
1481           If this policy is left not set, all four schemes will be used.''',
1482         },
1483         {
1484           'name': 'DisableAuthNegotiateCnameLookup',
1485           'type': 'main',
1486           'schema': { 'type': 'boolean' },
1487           'supported_on': ['chrome.*:9-'],
1488           'features': {
1489             'dynamic_refresh': False,
1490             'per_profile': False,
1491           },
1492           'example_value': False,
1493           'id': 27,
1494           'caption': '''Disable CNAME lookup when negotiating Kerberos authentication''',
1495           'desc': '''Specifies whether the generated Kerberos SPN is based on the canonical DNS name or the original name entered.
1497           If you enable this setting, CNAME lookup will be skipped and the server name will be used as entered.
1499           If you disable this setting or leave it not set, the canonical name of the server will be determined via CNAME lookup.''',
1500         },
1501         {
1502           'name': 'EnableAuthNegotiatePort',
1503           'type': 'main',
1504           'schema': { 'type': 'boolean' },
1505           'supported_on': ['chrome.*:9-'],
1506           'features': {
1507             'dynamic_refresh': False,
1508             'per_profile': False,
1509           },
1510           'example_value': False,
1511           'id': 28,
1512           'caption': '''Include non-standard port in Kerberos SPN''',
1513           'desc': '''Specifies whether the generated Kerberos SPN should include a non-standard port.
1515           If you enable this setting, and a non-standard port (i.e., a port other than 80 or 443) is entered, it will be included in the generated Kerberos SPN.
1517           If you disable this setting or leave it not set, the generated Kerberos SPN will not include a port in any case.''',
1518         },
1519         {
1520           'name': 'AuthServerWhitelist',
1521           'type': 'string',
1522           'schema': { 'type': 'string' },
1523           'supported_on': ['chrome.*:9-'],
1524           'features': {
1525             'dynamic_refresh': False,
1526             'per_profile': False,
1527           },
1528           'example_value': '*example.com,foobar.com,*baz',
1529           'id': 29,
1530           'caption': '''Authentication server whitelist''',
1531           'desc': '''Specifies which servers should be whitelisted for integrated authentication. Integrated authentication is only enabled when <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> receives an authentication challenge from a proxy or from a server which is in this permitted list.
1533           Separate multiple server names with commas. Wildcards (*) are allowed.
1535           If you leave this policy not set <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will try to detect if a server is on the Intranet and only then will it respond to IWA requests.  If a server is detected as Internet then IWA requests from it will be ignored by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''',
1536         },
1537         {
1538           'name': 'AuthNegotiateDelegateWhitelist',
1539           'type': 'string',
1540           'schema': { 'type': 'string' },
1541           'supported_on': ['chrome.*:9-'],
1542           'features': {
1543             'dynamic_refresh': False,
1544             'per_profile': False,
1545           },
1546           'example_value': 'foobar.example.com',
1547           'id': 30,
1548           'caption': '''Kerberos delegation server whitelist''',
1549           'desc': '''Servers that <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> may delegate to.
1551           Separate multiple server names with commas. Wildcards (*) are allowed.
1553           If you leave this policy not set <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will not delegate user credentials even if a server is detected as Intranet.''',
1554         },
1555         {
1556           'name': 'GSSAPILibraryName',
1557           'type': 'string',
1558           'schema': { 'type': 'string' },
1559           'supported_on': ['chrome.linux:9-'],
1560           'features': {
1561             'dynamic_refresh': False,
1562             'per_profile': False,
1563           },
1564           'example_value': 'libgssapi_krb5.so.2',
1565           'id': 31,
1566           'caption': '''GSSAPI library name''',
1567           'desc': '''Specifies which GSSAPI library to use for HTTP Authentication. You can set either just a library name, or a full path.
1569           If no setting is provided, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will fall back to using a default library name.''',
1570         },
1571         {
1572           'name': 'AllowCrossOriginAuthPrompt',
1573           'type': 'main',
1574           'schema': { 'type': 'boolean' },
1575           'supported_on': ['chrome.*:13-'],
1576           'features': {
1577             'dynamic_refresh': True,
1578             'per_profile': False,
1579           },
1580           'example_value': False,
1581           'id': 89,
1582           'caption': '''Cross-origin HTTP Basic Auth prompts''',
1583           'desc': '''Controls whether third-party sub-content on a page is allowed to pop-up an HTTP Basic Auth dialog box.
1585           Typically this is disabled as a phishing defense. If this policy is not set, this is disabled and third-party sub-content will not be allowed to pop up a HTTP Basic Auth dialog box.''',
1586         },
1587       ],
1588     },
1589     {
1590       'name': 'Extensions',
1591       'type': 'group',
1592       'caption': '''Extensions''',
1593       'desc': '''Configures extension-related policies. The user is not allowed to install blacklisted extensions unless they are whitelisted. You can also force <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to automatically install extensions by specifying them in <ph name="EXTENSIONINSTALLFORCELIST_POLICY_NAME">ExtensionInstallForcelist</ph>. Force-installed extensions are installed regardless whether they are present in the blacklist.''',
1594       'policies': [
1595         {
1596           'name': 'ExtensionInstallBlacklist',
1597           'type': 'list',
1598           'schema': {
1599             'type': 'array',
1600             'items': { 'type': 'string' },
1601           },
1602           'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
1603           'features': {
1604             'dynamic_refresh': True,
1605             'per_profile': True,
1606           },
1607           'example_value': ['extension_id1', 'extension_id2'],
1608           'id': 32,
1609           'caption': '''Configure extension installation blacklist''',
1610           'desc': '''Allows you to specify which extensions the users can NOT install. Extensions already installed will be removed if blacklisted.
1612           A blacklist value of '*' means all extensions are blacklisted unless they are explicitly listed in the whitelist.
1614           If this policy is left not set the user can install any extension in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''',
1615           'label': '''Extension IDs the user should be prevented from installing (or * for all)''',
1616         },
1617         {
1618           'name': 'ExtensionInstallWhitelist',
1619           'type': 'list',
1620           'schema': {
1621             'type': 'array',
1622             'items': { 'type': 'string' },
1623           },
1624           'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
1625           'features': {
1626             'dynamic_refresh': True,
1627             'per_profile': True,
1628           },
1629           'example_value': ['extension_id1', 'extension_id2'],
1630           'id': 33,
1631           'caption': '''Configure extension installation whitelist''',
1632           'desc': '''Allows you to specify which extensions are not subject to the blacklist.
1634           A blacklist value of * means all extensions are blacklisted and users can only install extensions listed in the whitelist.
1636           By default, all extensions are whitelisted, but if all extensions have been blacklisted by policy, the whitelist can be used to override that policy.''',
1637           'label': '''Extension IDs to exempt from the blacklist''',
1638         },
1639         {
1640           'name': 'ExtensionInstallForcelist',
1641           'type': 'list',
1642           'schema': {
1643             'type': 'array',
1644             'items': { 'type': 'string' },
1645           },
1646           'supported_on': ['chrome.*:9-', 'chrome_os:11-'],
1647           'features': {
1648             'dynamic_refresh': True,
1649             'per_profile': True,
1650           },
1651           'example_value': ['lcncmkcnkcdbbanbjakcencbaoegdjlp;https://clients2.google.com/service/update2/crx'],
1652           'id': 34,
1653           'caption': '''Configure the list of force-installed extensions''',
1654           'desc': '''Allows you to specify a list of extensions that will be installed silently, without user interaction.
1656           Each item of the list is a string that contains an extension ID and an update URL delimited by a semicolon (<ph name="SEMICOLON">;</ph>). The extension ID is the 32-letter string found e.g. on <ph name="CHROME_EXTENSIONS_LINK">chrome://extensions</ph> when in developer mode. The update URL should point to an Update Manifest XML document as described at <ph name="LINK_TO_EXTENSION_DOC1">https://developer.chrome.com/extensions/autoupdate</ph>. Note that the update URL set in this policy is only used for the initial installation; subsequent updates of the extension will use the update URL indicated in the extension's manifest.
1658           For each item, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will retrieve the extension specified by the extension ID from the update service at the specified update URL and silently install it.
1660           For example, <ph name="EXTENSION_POLICY_EXAMPLE">lcncmkcnkcdbbanbjakcencbaoegdjlp;https://clients2.google.com/service/update2/crx</ph> installs the <ph name="EXTENSION_POLICY_EXAMPLE_EXTENSION_NAME">Google SSL Web Search</ph> extension from the standard Chrome Web Store update URL. For more information about hosting extensions, see: <ph name="LINK_TO_EXTENSION_DOC2">https://developer.chrome.com/extensions/hosting</ph>.
1662           Users will be unable to uninstall extensions that are specified by this policy. If you remove an extension from this list, then it will be automatically uninstalled by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. Extensions specified in this list are also automatically whitelisted for installation; the ExtensionsInstallBlacklist does not affect them.
1664           If this policy is left not set the user can uninstall any extension  in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''',
1665           'label': '''Extension IDs and update URLs to be silently installed''',
1666         },
1667         {
1668           'name': 'ExtensionInstallSources',
1669           'type': 'list',
1670           'schema': {
1671             'type': 'array',
1672             'items': { 'type': 'string' },
1673           },
1674           'supported_on': ['chrome.*:21-', 'chrome_os:21-'],
1675           'features': {
1676             'dynamic_refresh': True,
1677             'per_profile': True,
1678           },
1679           'example_value': ['https://corp.mycompany.com/*'],
1680           'id': 148,
1681           'caption': '''Configure extension, app, and user script install sources''',
1682           'desc': '''Allows you to specify which URLs are allowed to install extensions, apps, and themes.
1684           Starting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> 21, it is more difficult to install extensions, apps, and user scripts from outside the Chrome Web Store. Previously, users could click on a link to a *.crx file, and <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> would offer to install the file after a few warnings. After <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> 21, such files must be downloaded and dragged onto the <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> settings page. This setting allows specific URLs to have the old, easier installation flow.
1686           Each item in this list is an extension-style match pattern (see https://developer.chrome.com/extensions/match_patterns). Users will be able to easily install items from any URL that matches an item in this list. Both the location of the *.crx file and the page where the download is started from (i.e. the referrer) must be allowed by these patterns.
1688           ExtensionInstallBlacklist takes precedence over this policy. That is, an extension on the blacklist won't be installed, even if it happens from a site on this list.''',
1689           'label': '''URL patterns to allow extension, app, and user script installs from''',
1690         },
1691         {
1692           'name': 'ExtensionAllowedTypes',
1693           'type': 'list',
1694           'schema': {
1695             'type': 'array',
1696             'items': {
1697               'type': 'string',
1698               'enum': [
1699                 'extension',
1700                 'theme',
1701                 'user_script',
1702                 'hosted_app',
1703                 'legacy_packaged_app',
1704                 'platform_app'
1705               ],
1706             },
1707           },
1708           'supported_on': ['chrome.*:25-', 'chrome_os:25-'],
1709           'features': {
1710             'dynamic_refresh': True,
1711             'per_profile': True,
1712           },
1713           'example_value': ['hosted_app'],
1714           'id': 168,
1715           'caption': '''Configure allowed app/extension types''',
1716           'desc': '''Controls which app/extension types are allowed to be installed.
1718           This setting white-lists the allowed types of extension/apps that can be installed in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. The value is a list of strings, each of which should be one of the following: "extension", "theme", "user_script", "hosted_app", "legacy_packaged_app", "platform_app". See the <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> extensions documentation for more information on these types.
1720           Note that this policy also affects extensions and apps to be force-installed via ExtensionInstallForcelist.
1722           If this setting is configured, extensions/apps which have a type that is not on the list will not be installed.
1724           If this settings is left not-configured, no restrictions on the acceptable extension/app types are enforced.''',
1725           'label': '''Types of extensions/apps that are allowed to be installed''',
1726         },
1727       ],
1728     },
1729     {
1730       'name': 'ShowHomeButton',
1731       'type': 'main',
1732       'schema': { 'type': 'boolean' },
1733       'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
1734       'features': {
1735         'can_be_recommended': True,
1736         'dynamic_refresh': True,
1737         'per_profile': True,
1738       },
1739       'example_value': True,
1740       'id': 35,
1741       'caption': '''Show Home button on toolbar''',
1742       'desc': '''Shows the Home button on <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>'s toolbar.
1744       If you enable this setting, the Home button is always shown.
1746       If you disable this setting, the Home button is never shown.
1748       If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1750       Leaving this policy not set will allow the user to choose whether to show the home button.''',
1751     },
1752     {
1753       'name': 'DeveloperToolsDisabled',
1754       'type': 'main',
1755       'schema': { 'type': 'boolean' },
1756       'supported_on': ['chrome.*:9-', 'chrome_os:11-'],
1757       'features': {
1758         'dynamic_refresh': True,
1759         'per_profile': True,
1760       },
1761       'example_value': False,
1762       'id': 36,
1763       'caption': '''Disable Developer Tools''',
1764       'desc': '''Disables the Developer Tools and the JavaScript console.
1766       If you enable this setting, the Developer Tools can not be accessed and web-site elements can not be inspected anymore. Any keyboard shortcuts and any menu or context menu entries to open the Developer Tools or the JavaScript Console will be disabled.
1768       Setting this option to disabled or leaving it not set will allow the use to use the Developer Tools and the JavaScript console.''',
1769     },
1770     {
1771       'name': 'RestoreOnStartupGroup',
1772       'type': 'group',
1773       'caption': '''Startup pages''',
1774       'desc': '''Allows you to configure the pages that are loaded on startup.
1776       The contents of the list 'URLs to open at startup' are ignored unless you select 'Open a list of URLs' in 'Action on startup'.''',
1777       'policies': [
1778         {
1779           'name': 'RestoreOnStartup',
1780           'type': 'int-enum',
1781           'schema': {
1782             'type': 'integer',
1783             'enum': [ 1, 4, 5 ],
1784           },
1785           'items': [
1786             {
1787               'name': 'RestoreOnStartupIsNewTabPage',
1788               'value': 5,
1789               'caption': '''Open New Tab Page''',
1790             },
1791             {
1792               'name': 'RestoreOnStartupIsLastSession',
1793               'value': 1,
1794               'caption': '''Restore the last session''',
1795             },
1796             {
1797               'name': 'RestoreOnStartupIsURLs',
1798               'value': 4,
1799               'caption': '''Open a list of URLs''',
1800             },
1801           ],
1802           'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
1803           'features': {
1804             'can_be_recommended': True,
1805             'dynamic_refresh': True,
1806             'per_profile': True,
1807           },
1808           'example_value': 4,
1809           'id': 37,
1810           'caption': '''Action on startup''',
1811           'desc': '''Allows you to specify the behavior on startup.
1813           If you choose 'Open New Tab Page' the New Tab Page will always be opened when you start <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1815           If you choose 'Restore the last session', the URLs that were open last time <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> was closed will be reopened and the browsing session will be restored as it was left.
1816           Choosing this option disables some settings that rely on sessions or that perform actions on exit (such as Clear browsing data on exit or session-only cookies).
1818           If you choose 'Open a list of URLs', the list of 'URLs to open on startup' will be opened when a user starts <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1820           If you enable this setting, users cannot change or override it in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1822           Disabling this setting is equivalent to leaving it not configured. The user will still be able to change it in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''',
1823         },
1824         {
1825           'name': 'RestoreOnStartupURLs',
1826           'type': 'list',
1827           'schema': {
1828             'type': 'array',
1829             'items': { 'type': 'string' },
1830           },
1831           'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
1832           'features': {
1833             'can_be_recommended': True,
1834             'dynamic_refresh': True,
1835             'per_profile': True,
1836           },
1837           'example_value': ['http://example.com', 'http://chromium.org'],
1838           'id': 38,
1839           'caption': '''URLs to open on startup''',
1840           'desc': '''If 'Open a list of URLs' is selected as the startup action, this allows you to specify the list of URLs that are opened. If left not set no URL will be opened on start up.
1842           This policy only works if the 'RestoreOnStartup' policy is set to 'RestoreOnStartupIsURLs'.''',
1843         },
1844       ],
1845     },
1846     {
1847       'name': 'BlockThirdPartyCookies',
1848       'type': 'main',
1849       'schema': { 'type': 'boolean' },
1850       'supported_on': ['chrome.*:10-', 'chrome_os:11-'],
1851       'features': {
1852         'can_be_recommended': True,
1853         'dynamic_refresh': True,
1854         'per_profile': True,
1855       },
1856       'example_value': False,
1857       'id': 39,
1858       'caption': '''Block third party cookies''',
1859       'desc': '''Blocks third party cookies.
1861       Enabling this setting prevents cookies from being set by web page elements that are not from the domain that is in the browser's address bar.
1863       Disabling this setting allows cookies to be set by web page elements that are not from the domain that is in the browser's address bar and prevents users from changing this setting.
1865       If this policy is left not set, third party cookies will be enabled but the user will be able to change that.''',
1866     },
1867     {
1868       # TODO(joaodasilva): Flag these policies with 'can_be_recommended'
1869       # after fixing http://crbug.com/106683
1870       'name': 'DefaultSearchProvider',
1871       'type': 'group',
1872       'caption': '''Default search provider''',
1873       'desc': '''Configures the default search provider. You can specify the default search provider that the user will use or choose to disable default search.''',
1874       'policies': [
1875         {
1876           'name': 'DefaultSearchProviderEnabled',
1877           'type': 'main',
1878           'schema': { 'type': 'boolean' },
1879           'supported_on': [
1880             'chrome.*:8-',
1881             'chrome_os:11-',
1882             'android:30-',
1883             'ios:34-',
1884           ],
1885           'features': {
1886             'dynamic_refresh': True,
1887             'per_profile': True,
1888           },
1889           'example_value': True,
1890           'id': 40,
1891           'caption': '''Enable the default search provider''',
1892           'desc': '''Enables the use of a default search provider.
1894           If you enable this setting, a default search is performed when the user types text in the omnibox that is not a URL.
1896           You can specify the default search provider to be used by setting the rest of the default search policies. If these are left empty, the user can choose the default provider.
1898           If you disable this setting, no search is performed when the user enters non-URL text in the omnibox.
1900           If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1902           If this policy is left not set, the default search provider is enabled, and the user will be able to set the search provider list.''',
1903         },
1904         {
1905           'name': 'DefaultSearchProviderName',
1906           'type': 'string',
1907           'schema': { 'type': 'string' },
1908           'supported_on': [
1909             'chrome.*:8-',
1910             'chrome_os:11-',
1911             'android:30-',
1912             'ios:34-',
1913           ],
1914           'features': {
1915             'dynamic_refresh': True,
1916             'per_profile': True,
1917           },
1918           'example_value': 'My Intranet Search',
1919           'id': 41,
1920           'caption': '''Default search provider name''',
1921           'desc': '''Specifies the name of the default search provider. If left empty or not set, the host name specified by the search URL will be used.
1923           This policy is only considered if the 'DefaultSearchProviderEnabled' policy is enabled.''',
1924         },
1925         {
1926           'name': 'DefaultSearchProviderKeyword',
1927           'type': 'string',
1928           'schema': { 'type': 'string' },
1929           'supported_on': [
1930             'chrome.*:8-',
1931             'chrome_os:11-',
1932             'android:30-',
1933             'ios:34-',
1934           ],
1935           'features': {
1936             'dynamic_refresh': True,
1937             'per_profile': True,
1938           },
1939           'example_value': 'mis',
1940           'id': 42,
1941           'caption': '''Default search provider keyword''',
1942           'desc': '''Specifies the keyword, which is the shortcut used in the omnibox to trigger the search for this provider.
1944           This policy is optional. If not set, no keyword will activate the search provider.
1946           This policy is only considered if the 'DefaultSearchProviderEnabled' policy is enabled.''',
1947         },
1948         {
1949           'name': 'DefaultSearchProviderSearchURL',
1950           'type': 'string',
1951           'schema': { 'type': 'string' },
1952           'supported_on': [
1953             'chrome.*:8-',
1954             'chrome_os:11-',
1955             'android:30-',
1956             'ios:34-',
1957           ],
1958           'features': {
1959             'dynamic_refresh': True,
1960             'per_profile': True,
1961           },
1962           'example_value': 'http://search.my.company/search?q={searchTerms}',
1963           'id': 43,
1964           'caption': '''Default search provider search URL''',
1965           'desc': '''Specifies the URL of the search engine used when doing a default search. The URL should contain the string '<ph name="SEARCH_TERM_MARKER">{searchTerms}</ph>', which will be replaced at query time by the terms the user is searching for.
1967           This option must be set when the 'DefaultSearchProviderEnabled' policy is enabled and will only be respected if this is the case.''',
1968         },
1969         {
1970           'name': 'DefaultSearchProviderSuggestURL',
1971           'type': 'string',
1972           'schema': { 'type': 'string' },
1973           'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
1974           'features': {
1975             'dynamic_refresh': True,
1976             'per_profile': True,
1977           },
1978           'example_value': 'http://search.my.company/suggest?q={searchTerms}',
1979           'id': 44,
1980           'caption': '''Default search provider suggest URL''',
1981           'desc': '''Specifies the URL of the search engine used to provide search suggestions. The URL should contain the string '<ph name="SEARCH_TERM_MARKER">{searchTerms}</ph>', which will be replaced at query time by the text the user has entered so far.
1983           This policy is optional. If not set, no suggest URL will be used.
1985           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
1986         },
1987         {
1988           'name': 'DefaultSearchProviderInstantURL',
1989           'type': 'string',
1990           'schema': { 'type': 'string' },
1991           'supported_on': ['chrome.*:10-', 'chrome_os:11-', 'android:30-'],
1992           'features': {
1993             'dynamic_refresh': True,
1994             'per_profile': True,
1995           },
1996           'example_value': 'http://search.my.company/suggest?q={searchTerms}',
1997           'id': 45,
1998           'caption': '''Default search provider instant URL''',
1999           'desc': '''Specifies the URL of the search engine used to provide instant results. The URL should contain the string <ph name="SEARCH_TERM_MARKER">'{searchTerms}'</ph>, which will be replaced at query time by the text the user has entered so far.
2001           This policy is optional. If not set, no instant search results will be provided.
2003           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2004         },
2005         {
2006           'name': 'DefaultSearchProviderIconURL',
2007           'type': 'string',
2008           'schema': { 'type': 'string' },
2009           'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
2010           'features': {
2011             'dynamic_refresh': True,
2012             'per_profile': True,
2013           },
2014           'example_value': 'http://search.my.company/favicon.ico',
2015           'id': 46,
2016           'caption': '''Default search provider icon''',
2017           'desc': '''Specifies the favorite icon URL of the default search provider.
2019           This policy is optional. If not set, no icon will be present for the search provider.
2021           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2022         },
2023         {
2024           'name': 'DefaultSearchProviderEncodings',
2025           'type': 'list',
2026           'schema': {
2027             'type': 'array',
2028             'items': { 'type': 'string' },
2029           },
2030           'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
2031           'features': {
2032             'dynamic_refresh': True,
2033             'per_profile': True,
2034           },
2035           'example_value': ['UTF-8', 'UTF-16', 'GB2312', 'ISO-8859-1'],
2036           'id': 47,
2037           'caption': '''Default search provider encodings''',
2038           'desc': '''Specifies the character encodings supported by the search provider. Encodings are code page names like UTF-8, GB2312, and ISO-8859-1. They are tried in the order provided.
2040           This policy is optional. If not set, the default will be used which is UTF-8.
2042           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2043         },
2044         {
2045           'name': 'DefaultSearchProviderAlternateURLs',
2046           'type': 'list',
2047           'schema': {
2048             'type': 'array',
2049             'items': { 'type': 'string' },
2050           },
2051           'supported_on': ['chrome.*:24-', 'chrome_os:24-', 'android:30-'],
2052           'features': {
2053             'dynamic_refresh': True,
2054             'per_profile': True,
2055           },
2056           'example_value': ['http://search.my.company/suggest#q={searchTerms}', 'http://search.my.company/suggest/search#q={searchTerms}'],
2057           'id': 161,
2058           'caption': '''List of alternate URLs for the default search provider''',
2059           'desc': '''Specifies a list of alternate URLs that can be used to extract search terms from the search engine. The URLs should contain the string <ph name="SEARCH_TERM_MARKER">'{searchTerms}'</ph>, which will be used to extract the search terms.
2061           This policy is optional. If not set, no alternate urls will be used to extract search terms.
2063           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2064         },
2065         {
2066           'name': 'DefaultSearchProviderSearchTermsReplacementKey',
2067           'type': 'string',
2068           'schema': { 'type': 'string' },
2069           'supported_on': ['chrome.*:25-', 'chrome_os:25-', 'android:30-'],
2070           'features': {
2071             'dynamic_refresh': True,
2072             'per_profile': True,
2073           },
2074           'example_value': 'espv',
2075           'id': 171,
2076           'caption': '''Parameter controlling search term placement for the default search provider''',
2077           'desc': '''If this policy is set and a search URL suggested from the omnibox contains this parameter in the query string or in the fragment identifier, then the suggestion will show the search terms and search provider instead of the raw search URL.
2079           This policy is optional. If not set, no search term replacement will be performed.
2081           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2082         },
2083         {
2084           'name': 'DefaultSearchProviderImageURL',
2085           'type': 'string',
2086           'schema': { 'type': 'string' },
2087           'supported_on': ['chrome.*:29-', 'chrome_os:29-', 'android:30-'],
2088           'features': {
2089             'dynamic_refresh': True,
2090             'per_profile': True,
2091           },
2092           'example_value': 'http://search.my.company/searchbyimage/upload',
2093           'id': 229,
2094           'caption': '''Parameter providing search-by-image feature for the default search provider''',
2095           'desc': '''Specifies the URL of the search engine used to provide image search. Search requests will be sent using the GET method. If the DefaultSearchProviderImageURLPostParams policy is set then image search requests will use the POST method instead.
2097           This policy is optional. If not set, no image search will be used.
2099           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2100         },
2101         {
2102           'name': 'DefaultSearchProviderNewTabURL',
2103           'type': 'string',
2104           'schema': { 'type': 'string' },
2105           'supported_on': ['chrome.*:30-', 'chrome_os:30-', 'android:30-'],
2106           'features': {
2107             'dynamic_refresh': True,
2108             'per_profile': True,
2109           },
2110           'example_value': 'http://search.my.company/newtab',
2111           'id': 237,
2112           'caption': '''Default search provider new tab page URL''',
2113           'desc': '''Specifies the URL that a search engine uses to provide a new tab page.
2115           This policy is optional. If not set, no new tab page will be provided.
2117           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2118         },
2119         {
2120           'name': 'DefaultSearchProviderSearchURLPostParams',
2121           'type': 'string',
2122           'schema': { 'type': 'string' },
2123           'supported_on': ['chrome.*:29-', 'chrome_os:29-', 'android:30-'],
2124           'features': {
2125             'dynamic_refresh': True,
2126             'per_profile': True,
2127           },
2128           'example_value': 'q={searchTerms},ie=utf-8,oe=utf-8',
2129           'id': 230,
2130           'caption': '''Parameters for search URL which uses POST''',
2131           'desc': '''Specifies the parameters used when searching a URL with POST. It consists of comma-separated name/value pairs. If a value is a template parameter, like {searchTerms} in above example, it will be replaced with real search terms data.
2133           This policy is optional. If not set, search request will be sent using the GET method.
2135           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2136         },
2137         {
2138           'name': 'DefaultSearchProviderSuggestURLPostParams',
2139           'type': 'string',
2140           'schema': { 'type': 'string' },
2141           'supported_on': ['chrome.*:29-', 'chrome_os:29-', 'android:30-'],
2142           'features': {
2143             'dynamic_refresh': True,
2144             'per_profile': True,
2145           },
2146           'example_value': 'q={searchTerms},ie=utf-8,oe=utf-8',
2147           'id': 231,
2148           'caption': '''Parameters for suggest URL which uses POST''',
2149           'desc': '''Specifies the parameters used when doing suggestion search with POST. It consists of comma-separated name/value pairs. If a value is a template parameter, like {searchTerms} in above example, it will be replaced with real search terms data.
2151           This policy is optional. If not set, suggest search request will be sent using the GET method.
2153           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2154         },
2155         {
2156           'name': 'DefaultSearchProviderInstantURLPostParams',
2157           'type': 'string',
2158           'schema': { 'type': 'string' },
2159           'supported_on': ['chrome.*:29-', 'chrome_os:29-', 'android:30-'],
2160           'features': {
2161             'dynamic_refresh': True,
2162             'per_profile': True,
2163           },
2164           'example_value': 'q={searchTerms},ie=utf-8,oe=utf-8',
2165           'id': 232,
2166           'caption': '''Parameters for instant URL which uses POST''',
2167           'desc': '''Specifies the parameters used when doing instant search with POST. It consists of comma-separated name/value pairs. If a value is a template parameter, like {searchTerms} in above example, it will be replaced with real search terms data.
2169           This policy is optional. If not set, instant search request will be sent using the GET method.
2171           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2172         },
2173         {
2174           'name': 'DefaultSearchProviderImageURLPostParams',
2175           'type': 'string',
2176           'schema': { 'type': 'string' },
2177           'supported_on': ['chrome.*:29-', 'chrome_os:29-', 'android:30-'],
2178           'features': {
2179             'dynamic_refresh': True,
2180             'per_profile': True,
2181           },
2182           'example_value': 'content={imageThumbnail},url={imageURL},sbisrc={SearchSource}',
2183           'id': 233,
2184           'caption': '''Parameters for image URL which uses POST''',
2185           'desc': '''Specifies the parameters used when doing image search with POST. It consists of comma-separated name/value pairs. If a value is a template parameter, like {imageThumbnail} in above example, it will be replaced with real image thumbnail data.
2187           This policy is optional. If not set, image search request will be sent using the GET method.
2189           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2190         },
2191       ],
2192     },
2193     {
2194       # TODO(joaodasilva): Flag these policies with 'can_be_recommended'
2195       # after fixing http://crbug.com/106682
2196       'name': 'ContentSettings',
2197       'type': 'group',
2198       'caption': '''Content Settings''',
2199       'desc': '''Content Settings allow you to specify how contents of a specific type (for example Cookies, Images or JavaScript) is handled.''',
2200       'policies': [
2201         {
2202           'name': 'DefaultCookiesSetting',
2203           'type': 'int-enum',
2204           'schema': {
2205             'type': 'integer',
2206             'enum': [ 1, 2, 4 ],
2207           },
2208           'items': [
2209             {
2210               'name': 'AllowCookies',
2211               'value': 1,
2212               'caption': '''Allow all sites to set local data''',
2213             },
2214             {
2215               'name': 'BlockCookies',
2216               'value': 2,
2217               'caption': '''Do not allow any site to set local data''',
2218             },
2219             {
2220               'name': 'SessionOnly',
2221               'value': 4,
2222               'caption': '''Keep cookies for the duration of the session''',
2223             },
2224           ],
2225           'supported_on': [
2226             'chrome.*:10-',
2227             'chrome_os:11-',
2228             'android:30-',
2229             'ios:34-',
2230           ],
2231           'features': {
2232             'dynamic_refresh': True,
2233             'per_profile': True,
2234           },
2235           'example_value': 1,
2236           'id': 48,
2237           'caption': '''Default cookies setting''',
2238           'desc': '''Allows you to set whether websites are allowed to set local data. Setting local data can be either allowed for all websites or denied for all websites.
2240           If this policy is left not set, 'AllowCookies' will be used and the user will be able to change it.''',
2241         },
2242         {
2243           'name': 'DefaultImagesSetting',
2244           'type': 'int-enum',
2245           'schema': {
2246             'type': 'integer',
2247             'enum': [ 1, 2 ],
2248           },
2249           'items': [
2250             {
2251               'name': 'AllowImages',
2252               'value': 1,
2253               'caption': '''Allow all sites to show all images''',
2254             },
2255             {
2256               'name': 'BlockImages',
2257               'value': 2,
2258               'caption': '''Do not allow any site to show images''',
2259             },
2260           ],
2261           'supported_on': ['chrome.*:10-', 'chrome_os:11-', 'android:30-'],
2262           'features': {
2263             'dynamic_refresh': True,
2264             'per_profile': True,
2265           },
2266           'example_value': 1,
2267           'id': 49,
2268           'caption': '''Default images setting''',
2269           'desc': '''Allows you to set whether websites are allowed to display images. Displaying images can be either allowed for all websites or denied for all websites.
2271           If this policy is left not set, 'AllowImages' will be used and the user will be able to change it.''',
2272         },
2273         {
2274           'name': 'DefaultJavaScriptSetting',
2275           'type': 'int-enum',
2276           'schema': {
2277             'type': 'integer',
2278             'enum': [ 1, 2 ],
2279           },
2280           'items': [
2281             {
2282               'name': 'AllowJavaScript',
2283               'value': 1,
2284               'caption': '''Allow all sites to run JavaScript''',
2285             },
2286             {
2287               'name': 'BlockJavaScript',
2288               'value': 2,
2289               'caption': '''Do not allow any site to run JavaScript''',
2290             },
2291           ],
2292           'supported_on': ['chrome.*:10-', 'chrome_os:11-', 'android:30-'],
2293           'features': {
2294             'dynamic_refresh': True,
2295             'per_profile': True,
2296           },
2297           'example_value': 1,
2298           'id': 50,
2299           'caption': '''Default JavaScript setting''',
2300           'desc': '''Allows you to set whether websites are allowed to run JavaScript. Running JavaScript can be either allowed for all websites or denied for all websites.
2302           If this policy is left not set, 'AllowJavaScript' will be used and the user will be able to change it.''',
2303         },
2304         {
2305           'name': 'DefaultPluginsSetting',
2306           'type': 'int-enum',
2307           'schema': {
2308             'type': 'integer',
2309             'enum': [ 1, 2, 3 ],
2310           },
2311           'items': [
2312             {
2313               'name': 'AllowPlugins',
2314               'value': 1,
2315               'caption': '''Allow all sites to automatically run plugins''',
2316             },
2317             {
2318               'name': 'BlockPlugins',
2319               'value': 2,
2320               'caption': '''Block all plugins''',
2321             },
2322             {
2323               'name': 'ClickToPlay',
2324               'value': 3,
2325               'caption': '''Click to play''',
2326             },
2327           ],
2328           'supported_on': ['chrome.*:10-', 'chrome_os:11-'],
2329           'features': {
2330             'dynamic_refresh': True,
2331             'per_profile': True,
2332           },
2333           'example_value': 1,
2334           'id': 51,
2335           'caption': '''Default plugins setting''',
2336           'desc': '''Allows you to set whether websites are allowed to automatically run plugins. Automatically running plugins can be either allowed for all websites or denied for all websites.
2338           Click to play allows plugins to run but the user must click them to start their execution.
2340           If this policy is left not set, 'AllowPlugins' will be used and the user will be able to change it.''',
2341         },
2342         {
2343           'name': 'DefaultPopupsSetting',
2344           'type': 'int-enum',
2345           'schema': {
2346             'type': 'integer',
2347             'enum': [ 1, 2 ],
2348           },
2349           'items': [
2350             {
2351               'name': 'AllowPopups',
2352               'value': 1,
2353               'caption': '''Allow all sites to show pop-ups''',
2354             },
2355             {
2356               'name': 'BlockPopups',
2357               'value': 2,
2358               'caption': '''Do not allow any site to show popups''',
2359             },
2360           ],
2361           'supported_on': [
2362             'chrome.*:10-',
2363             'chrome_os:11-',
2364             'ios:34-',
2365             'android:33-',
2366           ],
2367           'features': {
2368             'dynamic_refresh': True,
2369             'per_profile': True,
2370           },
2371           'example_value': 1,
2372           'id': 52,
2373           'caption': '''Default popups setting''',
2374           'desc': '''Allows you to set whether websites are allowed to show pop-ups. Showing popups can be either allowed for all websites or denied for all websites.
2376           If this policy is left not set, 'BlockPopups' will be used and the user will be able to change it.''',
2377         },
2378         {
2379           'name': 'DefaultNotificationsSetting',
2380           'type': 'int-enum',
2381           'schema': {
2382             'type': 'integer',
2383             'enum': [ 1, 2, 3 ],
2384           },
2385           'items': [
2386             {
2387               'name': 'AllowNotifications',
2388               'value': 1,
2389               'caption': '''Allow sites to show desktop notifications''',
2390             },
2391             {
2392               'name': 'BlockNotifications',
2393               'value': 2,
2394               'caption': '''Do not allow any site to show desktop notifications''',
2395             },
2396             {
2397               'name': 'AskNotifications',
2398               'value': 3,
2399               'caption': '''Ask every time a site wants to show desktop notifications''',
2400             },
2401           ],
2402           'supported_on': ['chrome.*:10-', 'chrome_os:11-'],
2403           'features': {
2404             'dynamic_refresh': True,
2405             'per_profile': True,
2406           },
2407           'example_value': 2,
2408           'id': 53,
2409           'caption': '''Default notification setting''',
2410           'desc': '''Allows you to set whether websites are allowed to display desktop notifications. Displaying desktop notifications can be allowed by default, denied by default or the user can be asked every time a website wants to show desktop notifications.
2412           If this policy is left not set, 'AskNotifications' will be used and the user will be able to change it.''',
2413         },
2414         {
2415           'name': 'DefaultGeolocationSetting',
2416           'type': 'int-enum',
2417           'schema': {
2418             'type': 'integer',
2419             'enum': [ 1, 2, 3 ],
2420           },
2421           'items': [
2422             {
2423               'name': 'AllowGeolocation',
2424               'value': 1,
2425               'caption': '''Allow sites to track the users' physical location''',
2426             },
2427             {
2428               'name': 'BlockGeolocation',
2429               'value': 2,
2430               'caption': '''Do not allow any site to track the users' physical location''',
2431             },
2432             {
2433               'name': 'AskGeolocation',
2434               'value': 3,
2435               'caption': '''Ask whenever a site wants to track the users' physical location''',
2436             },
2437           ],
2438           'supported_on': ['chrome.*:10-', 'chrome_os:11-', 'android:30-'],
2439           'features': {
2440             'dynamic_refresh': True,
2441             'per_profile': True,
2442           },
2443           'example_value': 0,
2444           'id': 54,
2445           'caption': '''Default geolocation setting''',
2446           'desc': '''Allows you to set whether websites are allowed to track the users' physical location. Tracking the users' physical location can be allowed by default, denied by default or the user can be asked every time a website requests the physical location.
2448           If this policy is left not set, 'AskGeolocation' will be used and the user will be able to change it.''',
2449         },
2450         {
2451           'name': 'DefaultMediaStreamSetting',
2452           'type': 'int-enum',
2453           'schema': {
2454             'type': 'integer',
2455             'enum': [ 2, 3 ],
2456           },
2457           'items': [
2458             {
2459               'name': 'BlockAccess',
2460               'value': 2,
2461               'caption': '''Do not allow any site to access the camera and microphone''',
2462             },
2463             {
2464               'name': 'PromptOnAccess',
2465               'value': 3,
2466               'caption': '''Ask every time a site wants to access the camera and/or microphone''',
2467             },
2468           ],
2469           'supported_on': ['chrome.*:22-', 'chrome_os:22-'],
2470           'features': {
2471             'dynamic_refresh': True,
2472             'per_profile': True,
2473           },
2474           'deprecated': True,
2475           'example_value': 2,
2476           'id': 149,
2477           'caption': '''Default mediastream setting''',
2478           'desc': '''Allows you to set whether websites are allowed to get access to media capture devices. Access to media capture devices can be allowed by default, or the user can be asked every time a website wants to get access to media capture devices.
2480           If this policy is left not set, 'PromptOnAccess' will be used and the user will be able to change it.''',
2481         },
2482         {
2483           'name': 'AutoSelectCertificateForUrls',
2484           'type': 'list',
2485           'schema': {
2486             'type': 'array',
2487             'items': { 'type': 'string' },
2488           },
2489           'supported_on': ['chrome.*:15-', 'chrome_os:15-'],
2490           'features': {
2491             'dynamic_refresh': True,
2492             'per_profile': True,
2493           },
2494           'example_value': ["{\\\"pattern\\\":\\\"https://www.example.com\\\",\\\"filter\\\":{\\\"ISSUER\\\":{\\\"CN\\\":\\\"certificate issuer name\\\"}}}"],
2495           'id': 102,
2496           'caption': '''Automatically select client certificates for these sites''',
2497           'desc': '''Allows you to specify a list of url patterns that specify sites for which <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> should automatically select a client certificates, if the site requests a certificate.
2499           If this policy is left not set no auto-selection will be done for any site.''',
2500         },
2501         {
2502           'name': 'CookiesAllowedForUrls',
2503           'type': 'list',
2504           'schema': {
2505             'type': 'array',
2506             'items': { 'type': 'string' },
2507           },
2508           'supported_on': [
2509             'chrome.*:11-',
2510             'chrome_os:11-',
2511             'android:30-',
2512             'ios:34-',
2513           ],
2514           'features': {
2515             'dynamic_refresh': True,
2516             'per_profile': True,
2517           },
2518           'example_value': ['http://www.example.com', '[*.]example.edu'],
2519           'id': 77,
2520           'caption': '''Allow cookies on these sites''',
2521           'desc': '''Allows you to set a list of url patterns that specify sites which are allowed to set cookies.
2523           If this policy is left not set the global default value will be used for all sites either from the 'DefaultCookiesSetting' policy if it is set, or the user's personal configuration otherwise.''',
2524         },
2525         {
2526           'name': 'CookiesBlockedForUrls',
2527           'type': 'list',
2528           'schema': {
2529             'type': 'array',
2530             'items': { 'type': 'string' },
2531           },
2532           'supported_on': [
2533             'chrome.*:11-',
2534             'chrome_os:11-',
2535             'android:30-',
2536             'ios:34-',
2537           ],
2538           'features': {
2539             'dynamic_refresh': True,
2540             'per_profile': True,
2541           },
2542           'example_value': ['http://www.example.com', '[*.]example.edu'],
2543           'id': 67,
2544           'caption': '''Block cookies on these sites''',
2545           'desc': '''Allows you to set a list of url patterns that specify sites which are not allowed to set cookies.
2547           If this policy is left not set the global default value will be used for all sites either from the 'DefaultCookiesSetting' policy if it is set, or the user's personal configuration otherwise.''',
2548         },
2549         {
2550           'name': 'CookiesSessionOnlyForUrls',
2551           'type': 'list',
2552           'schema': {
2553             'type': 'array',
2554             'items': { 'type': 'string' },
2555           },
2556           'supported_on': [
2557             'chrome.*:11-',
2558             'chrome_os:11-',
2559             'android:30-',
2560             'ios:34-',
2561           ],
2562           'features': {
2563             'dynamic_refresh': True,
2564             'per_profile': True,
2565           },
2566           'example_value': ['http://www.example.com', '[*.]example.edu'],
2567           'id': 68,
2568           'caption': '''Allow session only cookies on these sites''',
2569           'desc': '''Allows you to set a list of url patterns that specify sites which are allowed to set session only cookies.
2571           If this policy is left not set the global default value will be used for all sites either from the 'DefaultCookiesSetting' policy if it is set, or the user's personal configuration otherwise.
2573           If the "RestoreOnStartup" policy is set to restore URLs from previous sessions this policy will not be respected and cookies will be stored permanently for those sites.''',
2574         },
2575         {
2576           'name': 'ImagesAllowedForUrls',
2577           'type': 'list',
2578           'schema': {
2579             'type': 'array',
2580             'items': { 'type': 'string' },
2581           },
2582           'supported_on': ['chrome.*:11-', 'chrome_os:11-', 'android:30-'],
2583           'features': {
2584             'dynamic_refresh': True,
2585             'per_profile': True,
2586           },
2587           'example_value': ['http://www.example.com', '[*.]example.edu'],
2588           'id': 69,
2589           'caption': '''Allow images on these sites''',
2590           'desc': '''Allows you to set a list of url patterns that specify sites which are allowed to display images.
2592           If this policy is left not set the global default value will be used for all sites either from the 'DefaultImagesSetting' policy if it is set, or the user's personal configuration otherwise.''',
2593         },
2594         {
2595           'name': 'ImagesBlockedForUrls',
2596           'type': 'list',
2597           'schema': {
2598             'type': 'array',
2599             'items': { 'type': 'string' },
2600           },
2601           'supported_on': ['chrome.*:11-', 'chrome_os:11-', 'android:30-'],
2602           'features': {
2603             'dynamic_refresh': True,
2604             'per_profile': True,
2605           },
2606           'example_value': ['http://www.example.com', '[*.]example.edu'],
2607           'id': 70,
2608           'caption': '''Block images on these sites''',
2609           'desc': '''Allows you to set a list of url patterns that specify sites which are not allowed to display images.
2611           If this policy is left not set the global default value will be used for all sites either from the 'DefaultImagesSetting' policy if it is set, or the user's personal configuration otherwise.''',
2612         },
2613         {
2614           'name': 'JavaScriptAllowedForUrls',
2615           'type': 'list',
2616           'schema': {
2617             'type': 'array',
2618             'items': { 'type': 'string' },
2619           },
2620           'supported_on': ['chrome.*:11-', 'chrome_os:11-', 'android:30-'],
2621           'features': {
2622             'dynamic_refresh': True,
2623             'per_profile': True,
2624           },
2625           'example_value': ['http://www.example.com', '[*.]example.edu'],
2626           'id': 71,
2627           'caption': '''Allow JavaScript on these sites''',
2628           'desc': '''Allows you to set a list of url patterns that specify sites which are allowed to run JavaScript.
2630           If this policy is left not set the global default value will be used for all sites either from the 'DefaultJavaScriptSetting' policy if it is set, or the user's personal configuration otherwise.''',
2631         },
2632         {
2633           'name': 'JavaScriptBlockedForUrls',
2634           'type': 'list',
2635           'schema': {
2636             'type': 'array',
2637             'items': { 'type': 'string' },
2638           },
2639           'supported_on': ['chrome.*:11-', 'chrome_os:11-', 'android:30-'],
2640           'features': {
2641             'dynamic_refresh': True,
2642             'per_profile': True,
2643           },
2644           'example_value': ['http://www.example.com', '[*.]example.edu'],
2645           'id': 72,
2646           'caption': '''Block JavaScript on these sites''',
2647           'desc': '''Allows you to set a list of url patterns that specify sites which are not allowed to run JavaScript.
2649           If this policy is left not set the global default value will be used for all sites either from the 'DefaultJavaScriptSetting' policy if it is set, or the user's personal configuration otherwise.''',
2650         },
2651         {
2652           'name': 'PluginsAllowedForUrls',
2653           'type': 'list',
2654           'schema': {
2655             'type': 'array',
2656             'items': { 'type': 'string' },
2657           },
2658           'supported_on': ['chrome.*:11-', 'chrome_os:11-'],
2659           'features': {
2660             'dynamic_refresh': True,
2661             'per_profile': True,
2662           },
2663           'example_value': ['http://www.example.com', '[*.]example.edu'],
2664           'id': 73,
2665           'caption': '''Allow plugins on these sites''',
2666           'desc': '''Allows you to set a list of url patterns that specify sites which are allowed to run plugins.
2668           If this policy is left not set the global default value will be used for all sites either from the 'DefaultPluginsSetting' policy if it is set, or the user's personal configuration otherwise.''',
2669         },
2670         {
2671           'name': 'PluginsBlockedForUrls',
2672           'type': 'list',
2673           'schema': {
2674             'type': 'array',
2675             'items': { 'type': 'string' },
2676           },
2677           'supported_on': ['chrome.*:11-', 'chrome_os:11-'],
2678           'features': {
2679             'dynamic_refresh': True,
2680             'per_profile': True,
2681           },
2682           'example_value': ['http://www.example.com', '[*.]example.edu'],
2683           'id': 74,
2684           'caption': '''Block plugins on these sites''',
2685           'desc': '''Allows you to set a list of url patterns that specify sites which are not allowed to run plugins.
2687           If this policy is left not set the global default value will be used for all sites either from the 'DefaultPluginsSetting' policy if it is set, or the user's personal configuration otherwise.''',
2688         },
2689         {
2690           'name': 'PopupsAllowedForUrls',
2691           'type': 'list',
2692           'schema': {
2693             'type': 'array',
2694             'items': { 'type': 'string' },
2695           },
2696           'supported_on': [
2697             'chrome.*:11-',
2698             'chrome_os:11-',
2699             'ios:34-',
2700             'android:34-',
2701           ],
2702           'features': {
2703             'dynamic_refresh': True,
2704             'per_profile': True,
2705           },
2706           'example_value': ['http://www.example.com', '[*.]example.edu'],
2707           'id': 75,
2708           'caption': '''Allow popups on these sites''',
2709           'desc': '''Allows you to set a list of url patterns that specify sites which are allowed to open popups.
2711           If this policy is left not set the global default value will be used for all sites either from the 'DefaultPopupsSetting' policy if it is set, or the user's personal configuration otherwise.''',
2712         },
2713         {
2714           'name': 'RegisteredProtocolHandlers',
2715           'type': 'dict',
2716           'schema': {
2717             'type': 'array',
2718             'items': {
2719               'type': 'object',
2720               'properties': {
2721                 'default': {
2722                   'description': 'A boolean flag indicating if the protocol handler should be set as the default.',
2723                   'type': 'boolean'
2724                 },
2725                 'protocol': {
2726                   'description': 'The protocol for the protocol handler.',
2727                   'type': 'string'
2728                 },
2729                 'url': {
2730                   'description': 'The URL of the protocol handler.',
2731                   'type': 'string'
2732                 }
2733               },
2734               'required': ['protocol', 'url']
2735             }
2736           },
2737           'supported_on': ['chrome.*:37-', 'chrome_os:37-'],
2738           'features': {
2739             'dynamic_refresh': False,
2740             'per_profile': True,
2741             'can_be_recommended': True,
2742           },
2743           'example_value': [{'protocol': 'mailto', 'url': 'https://mail.google.com/mail/?extsrc=mailto&url=%s', 'default': 'true'}],
2744           'id': 268,
2745           'caption': '''Register protocol handlers''',
2746           'desc': '''Allows you to register a list of protocol handlers. This can only be a recommended policy. The property |protocol| should be set to the scheme such as 'mailto' and the property |url| should be set to the URL pattern of the application that handles the scheme. The pattern can include a '%s', which if present will be replaced by the handled URL.
2748           The protocol handlers registered by policy are merged with the ones registered by the user and both are available for use. The user can override the protocol handlers installed by policy by installing a new default handler, but cannot remove a protocol handler registered by policy.''',
2749         },
2750         {
2751           'name': 'PopupsBlockedForUrls',
2752           'type': 'list',
2753           'schema': {
2754             'type': 'array',
2755             'items': { 'type': 'string' },
2756           },
2757           'supported_on': [
2758             'chrome.*:11-',
2759             'chrome_os:11-',
2760             'ios:34-',
2761             'android:34-',
2762           ],
2763           'features': {
2764             'dynamic_refresh': True,
2765             'per_profile': True,
2766           },
2767           'example_value': ['http://www.example.com', '[*.]example.edu'],
2768           'id': 76,
2769           'caption': '''Block popups on these sites''',
2770           'desc': '''Allows you to set a list of url patterns that specify sites which are not allowed to open popups.
2772           If this policy is left not set the global default value will be used for all sites either from the 'DefaultPopupsSetting' policy if it is set, or the user's personal configuration otherwise.''',
2773         },
2774         {
2775           'name': 'NotificationsAllowedForUrls',
2776           'type': 'list',
2777           'schema': {
2778             'type': 'array',
2779             'items': { 'type': 'string' },
2780           },
2781           'supported_on': ['chrome.*:16-', 'chrome_os:16-'],
2782           'features': {
2783             'dynamic_refresh': True,
2784             'per_profile': True,
2785           },
2786           'example_value': ['http://www.example.com', '[*.]example.edu'],
2787           'id': 105,
2788           'caption': '''Allow notifications on these sites''',
2789           'desc': '''Allows you to set a list of url patterns that specify sites which are allowed to display notifications.
2791           If this policy is left not set the global default value will be used for all sites either from the 'DefaultNotificationsSetting' policy if it is set, or the user's personal configuration otherwise.''',
2792         },
2793         {
2794           'name': 'NotificationsBlockedForUrls',
2795           'type': 'list',
2796           'schema': {
2797             'type': 'array',
2798             'items': { 'type': 'string' },
2799           },
2800           'supported_on': ['chrome.*:16-', 'chrome_os:16-'],
2801           'features': {
2802             'dynamic_refresh': True,
2803             'per_profile': True,
2804           },
2805           'example_value': ['http://www.example.com', '[*.]example.edu'],
2806           'id': 106,
2807           'caption': '''Block notifications on these sites''',
2808           'desc': '''Allows you to set a list of url patterns that specify sites which are not allowed to display notifications.
2810           If this policy is left not set the global default value will be used for all sites either from the 'DefaultNotificationsSetting' policy if it is set, or the user's personal configuration otherwise.''',
2811         },
2812       ],
2813     },
2814     {
2815       'name': 'NativeMessaging',
2816       'type': 'group',
2817       'caption': '''Native Messaging''',
2818       'desc': '''Configures policies for Native Messaging. Blacklisted native messaging hosts won't be allowed unless they are whitelisted.''',
2819       'policies': [
2820         {
2821           'name': 'NativeMessagingBlacklist',
2822           'type': 'list',
2823           'schema': {
2824             'type': 'array',
2825             'items': { 'type': 'string' },
2826           },
2827           'supported_on': ['chrome.*:34-'],
2828           'features': {
2829             'dynamic_refresh': True,
2830             'per_profile': True,
2831           },
2832           'example_value': [
2833             'com.native.messaging.host.name1',
2834             'com.native.messaging.host.name2',
2835           ],
2836           'id': 251,
2837           'caption': '''Configure native messaging blacklist''',
2838           'desc': '''Allows you to specify which native messaging hosts that should not be loaded.
2840           A blacklist value of '*' means all native messaging hosts are blacklisted unless they are explicitly listed in the whitelist.
2842           If this policy is left not set <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will load all installed native messaging hosts.''',
2843           'label': '''Names of the forbidden native messaging hosts (or * for all)''',
2844         },
2845         {
2846           'name': 'NativeMessagingWhitelist',
2847           'type': 'list',
2848           'schema': {
2849             'type': 'array',
2850             'items': { 'type': 'string' },
2851           },
2852           'supported_on': ['chrome.*:34-'],
2853           'features': {
2854             'dynamic_refresh': True,
2855             'per_profile': True,
2856           },
2857           'example_value': [
2858             'com.native.messaging.host.name1',
2859             'com.native.messaging.host.name2',
2860           ],
2861           'id': 252,
2862           'caption': '''Configure native messaging whitelist''',
2863           'desc': '''Allows you to specify which native messaging hosts are not subject to the blacklist.
2865           A blacklist value of * means all native messaging hosts are blacklisted and only native messaging hosts listed in the whitelist will be loaded.
2867           By default, all native messaging hosts are whitelisted, but if all native messaging hosts have been blacklisted by policy, the whitelist can be used to override that policy.''',
2868           'label': '''Names of the native messaging hosts to exempt from the blacklist''',
2869         },
2870         {
2871           'name': 'NativeMessagingUserLevelHosts',
2872           'type': 'main',
2873           'schema': { 'type': 'boolean' },
2874           'supported_on': ['chrome.*:34-'],
2875           'features': {
2876             'dynamic_refresh': True,
2877             'per_profile': True,
2878           },
2879           'example_value': False,
2880           'id': 253,
2881           'caption': '''Allow user-level Native Messaging hosts (installed without admin permissions).''',
2882           'desc': '''Enables user-level installation of Native Messaging hosts.
2884           If this setting is enabled then <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> allows
2885           usage of Native Messaging hosts installed on user level.
2887           If this setting is disabled then <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will
2888           only use Native Messaging hosts installed on system level.
2890           If this setting is left not set <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>
2891           will allow usage of user-level Native Messaging hosts.''',
2892         },
2893       ],
2894     },
2895     {
2896       'name': 'Disable3DAPIs',
2897       'type': 'main',
2898       'schema': { 'type': 'boolean' },
2899       'supported_on': ['chrome.*:9-', 'chrome_os:11-'],
2900       'features': {
2901         'dynamic_refresh': True,
2902         'per_profile': True,
2903       },
2904       'example_value': False,
2905       'id': 55,
2906       'caption': '''Disable support for 3D graphics APIs''',
2907       'desc': '''Disable support for 3D graphics APIs.
2909       Enabling this setting prevents web pages from accessing the graphics processing unit (GPU). Specifically, web pages can not access the WebGL API and plugins can not use the Pepper 3D API.
2911       Disabling this setting or leaving it not set potentially allows web pages to use the WebGL API and plugins to use the Pepper 3D API. The default settings of the browser may still require command line arguments to be passed in order to use these APIs.''',
2912     },
2913     {
2914       'name': 'PolicyRefreshRate',
2915       'type': 'int',
2916       'schema': { 'type': 'integer' },
2917       'supported_on': ['chrome_os:11-'],
2918       'features': {
2919         'dynamic_refresh': True,
2920         'per_profile': True,
2921       },
2922       'example_value': 3600000,
2923       'id': 56,
2924       'caption': '''Refresh rate for user policy''',
2925       'desc': '''Specifies the period in milliseconds at which the device management service is queried for user policy information.
2927       Setting this policy overrides the default value of 3 hours. Valid values for this policy are in the range from 1800000 (30 minutes) to 86400000 (1 day). Any values not in this range will be clamped to the respective boundary.
2929       Leaving this policy not set will make <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> use the default value of 3 hours.''',
2930     },
2931     {
2932       'name': 'MaxInvalidationFetchDelay',
2933       'type': 'int',
2934       'schema': { 'type': 'integer' },
2935       'supported_on': ['chrome.*:30-', 'chrome_os:30-'],
2936       'features': {
2937         'dynamic_refresh': True,
2938         'per_profile': True,
2939       },
2940       'example_value': 10000,
2941       'id': 228,
2942       'caption': '''Maximum fetch delay after a policy invalidation''',
2943       'desc': '''Specifies the maximum delay in milliseconds between receiving a policy invalidation and fetching the new policy from the device management service.
2945       Setting this policy overrides the default value of 5000 milliseconds. Valid values for this policy are in the range from 1000 (1 second) to 300000 (5 minutes). Any values not in this range will be clamped to the respective boundary.
2947       Leaving this policy not set will make <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> use the default value of 5000 milliseconds.''',
2948     },
2949     {
2950       'name': 'ChromeFrameRendererSettings',
2951       'type': 'group',
2952       'caption': '''Default HTML renderer for <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>''',
2953       'desc': '''Allows you to configure the default HTML renderer when <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> is installed.
2954       The default setting is to allow the host browser do the rendering, but you
2955       can optionally override this and have <ph name="PRODUCT_FRAME_NAME">$3<ex>
2956       Google Chrome Frame</ex></ph> render HTML pages by default.''',
2957       'policies': [
2958         {
2959           'name': 'ChromeFrameRendererSettings',
2960           'type': 'int-enum',
2961           'schema': {
2962             'type': 'integer',
2963             'enum': [ 0, 1 ],
2964           },
2965           'items': [
2966             {
2967               'name': 'RenderInHost',
2968               'value': 0,
2969               'caption': '''Use the host browser by default''',
2970             },
2971             {
2972               'name': 'RenderInChromeFrame',
2973               'value': 1,
2974               'caption': '''Use <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> by default''',
2975             },
2976           ],
2977           'supported_on': ['chrome_frame:8-32'],
2978           'features': {
2979             'dynamic_refresh': False,
2980           },
2981           'example_value': 1,
2982           'id': 57,
2983           'caption': '''Default HTML renderer for <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>''',
2984           'desc': '''Allows you to configure the default HTML renderer when <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> is installed.
2985           The default setting used when this policy is left not set is to allow the host browser do the rendering, but you can optionally override this and have <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> render HTML pages by default.''',
2986         },
2987         {
2988           'name': 'RenderInChromeFrameList',
2989           'type': 'list',
2990           'schema': {
2991             'type': 'array',
2992             'items': { 'type': 'string' },
2993           },
2994           'supported_on': ['chrome_frame:8-32'],
2995           'features': {
2996             'dynamic_refresh': False,
2997           },
2998           'example_value': ['http://www.example.com', 'http://www.example.edu'],
2999           'id': 58,
3000           'caption': '''Always render the following URL patterns in <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>''',
3001           'desc': '''Customize the list of URL patterns that should always be rendered by <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>.
3003           If this policy is not set the default renderer will be used for all sites as specified by the 'ChromeFrameRendererSettings' policy.
3005           For example patterns see http://www.chromium.org/developers/how-tos/chrome-frame-getting-started.''',
3006         },
3007         {
3008           'name': 'RenderInHostList',
3009           'type': 'list',
3010           'schema': {
3011             'type': 'array',
3012             'items': { 'type': 'string' },
3013           },
3014           'supported_on': ['chrome_frame:8-32'],
3015           'features': {
3016             'dynamic_refresh': False,
3017           },
3018           'example_value': ['http://www.example.com', 'http://www.example.edu'],
3019           'id': 59,
3020           'caption': '''Always render the following URL patterns in the host browser''',
3021           'desc': '''Customize the list of URL patterns that should always be rendered by the host browser.
3023           If this policy is not set the default renderer will be used for all sites as specified by the 'ChromeFrameRendererSettings' policy.
3025           For example patterns see http://www.chromium.org/developers/how-tos/chrome-frame-getting-started.''',
3026         },
3027         {
3028           'name': 'AdditionalLaunchParameters',
3029           'type': 'string',
3030           'schema': { 'type': 'string' },
3031           'supported_on': ['chrome_frame:19-32'],
3032           'features': {
3033             'dynamic_refresh': False,
3034           },
3035           'example_value': '--enable-media-stream --enable-media-source',
3036           'id': 141,
3037           'caption': '''Additional command line parameters for <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>''',
3038           'desc': '''Allows you to specify additional parameters that are used when <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> launches <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
3040           If this policy is not set the default command line will be used.''',
3041         },
3042         {
3043           'name': 'SkipMetadataCheck',
3044           'type': 'main',
3045           'schema': { 'type': 'boolean' },
3046           'supported_on': ['chrome_frame:31-32'],
3047           'features': {
3048             'dynamic_refresh': False,
3049           },
3050           'example_value': False,
3051           'id': 238,
3052           'caption': '''Skip the meta tag check in <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>''',
3053           'desc': '''Normally pages with X-UA-Compatible set to chrome=1 will be rendered in <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> regardless of the 'ChromeFrameRendererSettings' policy.
3055           If you enable this setting, pages will not be scanned for meta tags.
3057           If you disable this setting, pages will be scanned for meta tags.
3059           If this policy is not set, pages will be scanned for meta tags.'''
3060         },
3061       ],
3062     },
3063     {
3064       'name': 'ChromeFrameContentTypes',
3065       'type': 'group',
3066       'caption': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> to handle the following content types''',
3067       'desc': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> to handle the following content types.''',
3068       'policies': [
3069         {
3070           'name': 'ChromeFrameContentTypes',
3071           'type': 'list',
3072           'schema': {
3073             'type': 'array',
3074             'items': { 'type': 'string' },
3075           },
3076           'supported_on': ['chrome_frame:8-32'],
3077           'features': {
3078             'dynamic_refresh': False,
3079           },
3080           'example_value': ['text/xml', 'application/xml'],
3081           'id': 60,
3082           'caption': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> to handle the listed content types''',
3083           'desc': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> to handle the listed content types.
3085           If this policy is not set the default renderer will be used for all sites as specified by the 'ChromeFrameRendererSettings' policy.''',
3086         },
3087       ],
3088     },
3089     {
3090       'name': 'ChromeOsLockOnIdleSuspend',
3091       'type': 'main',
3092       'schema': { 'type': 'boolean' },
3093       'supported_on': ['chrome_os:9-'],
3094       'features': {
3095         'can_be_recommended': True,
3096         'dynamic_refresh': True,
3097         'per_profile': True,
3098       },
3099       'example_value': True,
3100       'id': 61,
3101       'caption': '''Enable lock when the device become idle or suspended''',
3102       'desc': '''Enable lock when <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> devices become idle or suspended.
3104       If you enable this setting, users will be asked for a password to unlock the device from sleep.
3106       If you disable this setting, users will not be asked for a password to unlock the device from sleep.
3108       If you enable or disable this setting, users cannot change or override it.
3110       If the policy is left not set the user can choose whether he wants to be asked for password to unlock the device or not.''',
3111     },
3112     {
3113       'name': 'ChromeOsMultiProfileUserBehavior',
3114       'type': 'string-enum',
3115       'schema': {
3116         'type': 'string',
3117         'enum': [
3118           'unrestricted',
3119           'primary-only',
3120           'not-allowed',
3121         ],
3122       },
3123       'items': [
3124         {
3125           'name': 'MultiProfileUserBehaviorUnrestricted',
3126           'value': 'unrestricted',
3127           'caption': '''Allow enterprise user to be both primary and secondary  (Default behavior for non-managed users)''',
3128         },
3129         {
3130           'name': 'MultiProfileUserBehaviorMustBePrimary',
3131           'value': 'primary-only',
3132           'caption': '''Allow enterprise user to be primary multiprofile user only (Default behavior for enterprise-managed users)''',
3133         },
3134         {
3135           'name': 'MultiProfileUserBehaviorNotAllowed',
3136           'value': 'not-allowed',
3137           'caption': '''Do not allow enterprise user to be part of multiprofile (primary or secondary)''',
3138         },
3139       ],
3140       'supported_on': ['chrome_os:31-'],
3141       'features': {
3142         'dynamic_refresh': True,
3143         'per_profile': True,
3144       },
3145       'example_value': 'unrestricted',
3146       'id': 244,
3147       'caption': '''Control the user behavior in a multiprofile session''',
3148       'desc': '''Control the user behavior in a multiprofile session on <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> devices.
3150       If this policy is set to 'MultiProfileUserBehaviorUnrestricted', the user can be either primary or secondary user in a multiprofile session.
3152       If this policy is set to 'MultiProfileUserBehaviorMustBePrimary', the user can only be the primary user in a multiprofile session.
3154       If this policy is set to 'MultiProfileUserBehaviorNotAllowed', the user cannot be part of a multiprofile session.
3156       If you set this setting, users cannot change or override it.
3158       If the setting is changed while the user is signed into a multiprofile session, all users in the session will be checked against their corresponding settings. The session will be closed if any one of the users is no longer allowed to be in the session.
3160       If the policy is left not set, the default value 'MultiProfileUserBehaviorMustBePrimary' applies for enterprise-managed users and 'MultiProfileUserBehaviorUnrestricted' will be used for non-managed users.''',
3161     },
3162     {
3163       'name': 'InstantEnabled',
3164       'type': 'main',
3165       'schema': { 'type': 'boolean' },
3166       'supported_on': ['chrome.*:11-28', 'chrome_os:11-28'],
3167       'deprecated': True,
3168       'features': {
3169         'can_be_recommended': True,
3170         'dynamic_refresh': True,
3171         'per_profile': True,
3172       },
3173       'example_value': True,
3174       'id': 62,
3175       'caption': '''Enable Instant''',
3176       'desc': '''Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>'s Instant feature and prevents users from changing this setting.
3178       If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> Instant is enabled.
3180       If you disable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> Instant is disabled.
3182       If you enable or disable this setting, users cannot change or override this setting.
3184       If this setting is left not set the user can decide to use this function or not.
3186       This setting has been removed from <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> 29 and higher versions.''',
3187     },
3188     {
3189       'name': 'TranslateEnabled',
3190       'type': 'main',
3191       'schema': { 'type': 'boolean' },
3192       'supported_on': [
3193         'chrome.*:12-',
3194         'chrome_os:12-',
3195         'android:30-',
3196         'ios:34-',
3197       ],
3198       'features': {
3199         'can_be_recommended': True,
3200         'dynamic_refresh': True,
3201         'per_profile': True,
3202       },
3203       'example_value': True,
3204       'id': 80,
3205       'caption': '''Enable Translate''',
3206       'desc': '''Enables the integrated Google Translate service on <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
3208       If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will show an integrated toolbar offering to translate the page for the user, when appropriate.
3210       If you disable this setting, users will never see the translation bar.
3212       If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
3214       If this setting is left not set the user can decide to use this function or not.''',
3215     },
3216     {
3217       'name': 'AllowOutdatedPlugins',
3218       'type': 'main',
3219       'schema': { 'type': 'boolean' },
3220       'supported_on': ['chrome.*:12-', 'chrome_os:12-'],
3221       'features': {
3222         'dynamic_refresh': True,
3223         'per_profile': True,
3224       },
3225       'example_value': True,
3226       'id': 81,
3227       'caption': '''Allow running plugins that are outdated''',
3228       'desc': '''Allows <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to run plugins that are outdated.
3230       If you enable this setting, outdated plugins are used as normal plugins.
3232       If you disable this setting, outdated plugins will not be used and users will not be asked for permission to run them.
3234       If this setting is not set, users will be asked for permission to run outdated plugins.''',
3235     },
3236     {
3237       'name': 'AlwaysAuthorizePlugins',
3238       'type': 'main',
3239       'schema': { 'type': 'boolean' },
3240       'supported_on': ['chrome.*:13-', 'chrome_os:13-'],
3241       'features': {
3242         'dynamic_refresh': True,
3243         'per_profile': True,
3244       },
3245       'example_value': True,
3246       'id': 86,
3247       'caption': '''Always runs plugins that require authorization''',
3248       'desc': '''Allows <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to run plugins that require authorization.
3250       If you enable this setting, plugins that are not outdated always run.
3252       If this setting is disabled or not set, users will be asked for permission to run plugins that require authorization. These are plugins that can compromise security.''',
3253     },
3254     {
3255       'name': 'BookmarkBarEnabled',
3256       'type': 'main',
3257       'schema': { 'type': 'boolean' },
3258       'supported_on': ['chrome.*:12-', 'chrome_os:12-'],
3259       'features': {
3260         'can_be_recommended': True,
3261         'dynamic_refresh': True,
3262         'per_profile': True,
3263       },
3264       'example_value': True,
3265       'id': 82,
3266       'caption': '''Enable Bookmark Bar''',
3267       'desc': '''Enables the bookmark bar on <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
3269       If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will show a bookmark bar.
3271       If you disable this setting, users will never see the bookmark bar.
3273       If you enable or disable this setting, users cannot change or override it in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
3275       If this setting is left not set the user can decide to use this function or not.''',
3276     },
3277     {
3278       'name': 'EditBookmarksEnabled',
3279       'type': 'main',
3280       'schema': { 'type': 'boolean' },
3281       'supported_on': ['chrome.*:12-', 'chrome_os:12-', 'android:30-'],
3282       'features': {
3283         'dynamic_refresh': True,
3284         'per_profile': True,
3285       },
3286       'example_value': False,
3287       'id': 83,
3288       'caption': '''Enables or disables bookmark editing''',
3289       'desc': '''Enables or disables editing bookmarks in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
3291       If you enable this setting, bookmarks can be added, removed or modified. This is the default also when this policy is not set.
3293       If you disable this setting, bookmarks can not be added, removed or modified. Existing bookmarks are still available.''',
3294     },
3295     {
3296       'name': 'ShowAppsShortcutInBookmarkBar',
3297       'type': 'main',
3298       'schema': { 'type': 'boolean' },
3299       'supported_on': ['chrome.*:37-'],
3300       'features': {
3301         'dynamic_refresh': True,
3302         'per_profile': True,
3303       },
3304       'example_value': False,
3305       'id': 267,
3306       'caption': '''Show the apps shortcut in the bookmark bar''',
3307       'desc': '''Enables or disables the apps shortcut in the bookmark bar.
3309       If this policy is not set then the user can choose to show or hide the apps shortcut from the bookmark bar context menu.
3311       If this policy is configured then the user can't change it, and the apps shortcut is always shown or never shown.''',
3312     },
3313     {
3314       'name': 'AllowFileSelectionDialogs',
3315       'type': 'main',
3316       'schema': { 'type': 'boolean' },
3317       'supported_on': ['chrome.*:12-'],
3318       'features': {
3319         'dynamic_refresh': True,
3320         'per_profile': False,
3321       },
3322       'example_value': True,
3323       'id': 84,
3324       'caption': '''Allow invocation of file selection dialogs''',
3325       'desc': '''Allows access to local files on the machine by allowing <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to display file selection dialogs.
3327       If you enable this setting, users can open file selection dialogs as normal.
3329       If you disable this setting, whenever the user performs an action which would provoke a file selection dialog (like importing bookmarks, uploading files, saving links, etc.) a message is displayed instead and the user is assumed to have clicked Cancel on the file selection dialog.
3331       If this setting is not set, users can open file selection dialogs as normal.''',
3332     },
3333     {
3334       'name': 'GCFUserDataDir',
3335       'type': 'string',
3336       'schema': { 'type': 'string' },
3337       'supported_on': ['chrome_frame:12-32'],
3338       'features': {
3339         'dynamic_refresh': False,
3340       },
3341       'example_value': '${user_home}/Chrome Frame',
3342       'id': 87,
3343       'caption': '''Set <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> user data directory''',
3344       'desc': '''Configures the directory that <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> will use for storing user data.
3346       If you set this policy, <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> will use the provided directory.
3348       See http://www.chromium.org/administrators/policy-list-3/user-data-directory-variables for a list of variables that can be used.
3350       If this setting is left not set the default profile directory will be used.''',
3351       'label': '''Set user data directory''',
3352     },
3353     {
3354       'name': 'DevicePolicyRefreshRate',
3355       'type': 'int',
3356       'schema': { 'type': 'integer' },
3357       'supported_on': ['chrome_os:11-'],
3358       'device_only': True,
3359       'features': {
3360         'dynamic_refresh': True,
3361       },
3362       'example_value': 3600000,
3363       'id': 90,
3364       'caption': '''Refresh rate for Device Policy''',
3365       'desc': '''Specifies the period in milliseconds at which the device management service is queried for device policy information.
3367       Setting this policy overrides the default value of 3 hours. Valid values for this policy are in the range from 1800000 (30 minutes) to 86400000 (1 day). Any values not in this range will be clamped to the respective boundary.
3369       Leaving this policy not set will make <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> use the default value of 3 hours.''',
3370     },
3371     {
3372       'name': 'ImportBookmarks',
3373       'type': 'main',
3374       'schema': { 'type': 'boolean' },
3375       'supported_on': ['chrome.*:15-'],
3376       'features': {
3377         'can_be_recommended': True,
3378         'dynamic_refresh': True,
3379         'per_profile': True,
3380       },
3381       'example_value': True,
3382       'id': 97,
3383       'caption': '''Import bookmarks from default browser on first run''',
3384       'desc': '''This policy forces bookmarks to be imported from the current default browser if enabled. If enabled, this policy also affects the import dialog.
3386       If disabled, no bookmarks are imported.
3388       If it is not set, the user may be asked whether to import, or importing may happen automatically.''',
3389       'label': '''Import bookmarks from default browser on first run''',
3390     },
3391     {
3392       'name': 'ImportHistory',
3393       'type': 'main',
3394       'schema': { 'type': 'boolean' },
3395       'supported_on': ['chrome.*:15-'],
3396       'features': {
3397         'can_be_recommended': True,
3398         'dynamic_refresh': True,
3399         'per_profile': True,
3400       },
3401       'example_value': True,
3402       'id': 98,
3403       'caption': '''Import browsing history from default browser on first run''',
3404       'desc': '''This policy forces the browsing history to be imported from the current default browser if enabled. If enabled, this policy also affects the import dialog.
3406       If disabled, no browsing history is imported.
3408       If it is not set, the user may be asked whether to import, or importing may happen automatically.''',
3409       'label': '''Import browsing history from default browser on first run''',
3410     },
3411     {
3412       'name': 'ImportHomepage',
3413       'type': 'main',
3414       'schema': { 'type': 'boolean' },
3415       'supported_on': ['chrome.*:15-'],
3416       'features': {
3417         'dynamic_refresh': True,
3418         'per_profile': True,
3419       },
3420       'example_value': True,
3421       'id': 99,
3422       'caption': '''Import of homepage from default browser on first run''',
3423       'desc': '''This policy forces the home page to be imported from the current default browser if enabled.
3425       If disabled, the home page is not imported.
3427       If it is not set, the user may be asked whether to import, or importing may happen automatically.''',
3428       'label': '''Import of homepage from default browser on first run''',
3429     },
3430     {
3431       'name': 'ImportSearchEngine',
3432       'type': 'main',
3433       'schema': { 'type': 'boolean' },
3434       'supported_on': ['chrome.*:15-'],
3435       'features': {
3436         'can_be_recommended': True,
3437         'dynamic_refresh': True,
3438         'per_profile': True,
3439       },
3440       'example_value': True,
3441       'id': 100,
3442       'caption': '''Import search engines from default browser on first run''',
3443       'desc': '''This policy forces search engines to be imported from the current default browser if enabled. If enabled, this policy also affects the import dialog.
3445       If disabled, the default search engine is not imported.
3447       If it is not set, the user may be asked whether to import, or importing may happen automatically.''',
3448       'label': '''Import search engines from default browser on first run''',
3449     },
3450     {
3451       'name': 'ImportSavedPasswords',
3452       'type': 'main',
3453       'schema': { 'type': 'boolean' },
3454       'supported_on': ['chrome.*:15-'],
3455       'features': {
3456         'can_be_recommended': True,
3457         'dynamic_refresh': True,
3458         'per_profile': True,
3459       },
3460       'example_value': True,
3461       'id': 101,
3462       'caption': '''Import saved passwords from default browser on first run''',
3463       'desc': '''This policy forces the saved passwords to be imported from the previous default browser if enabled. If enabled, this policy also affects the import dialog.
3465       If disabled, the saved passwords are not imported.
3467       If it is not set, the user may be asked whether to import, or importing may happen automatically.''',
3468       'label': '''Import saved passwords from default browser on first run''',
3469     },
3470     {
3471       'name': 'MaxConnectionsPerProxy',
3472       'type': 'int',
3473       'schema': { 'type': 'integer' },
3474       'supported_on': ['chrome.*:14-'],
3475       'features': {
3476         'dynamic_refresh': False,
3477         'per_profile': False,
3478       },
3479       'example_value': 32,
3480       'id': 92,
3481       'caption': '''Maximal number of concurrent connections to the proxy server''',
3482       'desc': '''Specifies the maximal number of simultaneous connections to the proxy server.
3484       Some proxy servers can not handle high number of concurrent connections per client and this can be solved by setting this policy to a lower value.
3486       The value of this policy should be lower than 100 and higher than 6 and the default value is 32.
3488       Some web apps are known to consume many connections with hanging GETs, so lowering below 32 may lead to browser networking hangs if too many such web apps are open. Lower below the default at your own risk.
3490       If this policy is left not set the default value will be used which is 32.''',
3491     },
3492     {
3493       'name': 'HideWebStorePromo',
3494       'type': 'main',
3495       'schema': { 'type': 'boolean' },
3496       'supported_on': ['chrome.*:15-21', 'chrome_os:15-21'],
3497       'deprecated': True,
3498       'features': {
3499         'dynamic_refresh': False,
3500       },
3501       'example_value': False,
3502       'id': 96,
3503       'caption': '''Prevent app promotions from appearing on the new tab page''',
3504       'desc': '''When set to True, promotions for Chrome Web Store apps will not appear on the new tab page.
3506       Setting this option to False or leaving it not set will make the promotions for Chrome Web Store apps appear on the new tab page''',
3507     },
3508     {
3509       'name': 'URLBlacklist',
3510       'type': 'list',
3511       'schema': {
3512         'type': 'array',
3513         'items': { 'type': 'string' },
3514       },
3515       'supported_on': [
3516         'chrome.*:15-',
3517         'chrome_os:15-',
3518         'android:30-',
3519         'ios:34-',
3520       ],
3521       'features': {
3522         'dynamic_refresh': True,
3523         'per_profile': True,
3524       },
3525       'example_value': ['example.com', 'https://ssl.server.com', 'hosting.com/bad_path', 'http://server:8080/path', '.exact.hostname.com', '*'],
3526       'id': 103,
3527       'caption': '''Block access to a list of URLs''',
3528       'desc': '''Blocks access to the listed URLs.
3530       This policy prevents the user from loading web pages from blacklisted URLs.
3532       A URL has the format 'scheme://host:port/path'.
3533       The optional scheme can be http, https or ftp. Only this scheme will be blocked; if none is specified, all schemes are blocked.
3534       The host can be a hostname or an IP address. Subdomains of a hostname will also be blocked. To prevent blocking subdomains, include a '.' before the hostname. The special hostname '*' will block all domains.
3535       The optional port is a valid port number from 1 to 65535. If none is specified, all ports are blocked.
3536       If the optional path is specified, only paths with that prefix will be blocked.
3538       Exceptions can be defined in the URL whitelist policy. These policies are limited to 1000 entries; subsequent entries will be ignored.
3540       If this policy is not set no URL will be blacklisted in the browser.''',
3541     },
3542     {
3543       'name': 'URLWhitelist',
3544       'type': 'list',
3545       'schema': {
3546         'type': 'array',
3547         'items': { 'type': 'string' },
3548       },
3549       'supported_on': [
3550         'chrome.*:15-',
3551         'chrome_os:15-',
3552         'android:30-',
3553         'ios:34-',
3554       ],
3555       'features': {
3556         'dynamic_refresh': True,
3557         'per_profile': True,
3558       },
3559       'example_value': ['example.com', 'https://ssl.server.com', 'hosting.com/bad_path', 'http://server:8080/path', '.exact.hostname.com'],
3560       'id': 104,
3561       'caption': '''Allows access to a list of URLs''',
3562       'desc': '''Allows access to the listed URLs, as exceptions to the URL blacklist.
3564       See the description of the URL blacklist policy for the format of entries of this list.
3566       This policy can be used to open exceptions to restrictive blacklists. For example, '*' can be blacklisted to block all requests, and this policy can be used to allow access to a limited list of URLs. It can be used to open exceptions to certain schemes, subdomains of other domains, ports, or specific paths.
3568       The most specific filter will determine if a URL is blocked or allowed. The whitelist takes precedence over the blacklist.
3570       This policy is limited to 1000 entries; subsequent entries will be ignored.
3572       If this policy is not set there will be no exceptions to the blacklist from the 'URLBlacklist' policy.''',
3573     },
3574     {
3575       'name': 'OpenNetworkConfiguration',
3576       'type': 'string',
3577       'schema': { 'type': 'string' },
3578       'supported_on': ['chrome_os:16-'],
3579       'features': {
3580         'dynamic_refresh': True,
3581         'per_profile': True,
3582       },
3583       'example_value': '{ "NetworkConfigurations": [ { "GUID": "{4b224dfd-6849-7a63-5e394343244ae9c9}", "Name": "my WiFi", "Type": "WiFi", "WiFi": { "SSID": "my WiFi", "HiddenSSID": false, "Security": "None", "AutoConnect": true } } ] }',
3584       'id': 107,
3585       'caption': '''User-level network configuration''',
3586       'desc': '''Allows pushing network configuration to be applied per-user to a <ph name="PRODUCT_OS_NAME">$2<ex>Chromium OS</ex></ph> device. The network configuration is a JSON-formatted string as defined by the Open Network Configuration format described at <ph name="ONC_SPEC_URL">https://sites.google.com/a/chromium.org/dev/chromium-os/chromiumos-design-docs/open-network-configuration</ph>''',
3587     },
3588     {
3589       'name': 'DeviceOpenNetworkConfiguration',
3590       'type': 'string',
3591       'schema': { 'type': 'string' },
3592       'supported_on': ['chrome_os:16-'],
3593       'device_only': True,
3594       'features': {
3595         'dynamic_refresh': True,
3596       },
3597       'example_value': '{ "NetworkConfigurations": [ { "GUID": "{4b224dfd-6849-7a63-5e394343244ae9c9}", "Name": "my WiFi", "Type": "WiFi", "WiFi": { "SSID": "my WiFi", "HiddenSSID": false, "Security": "None", "AutoConnect": true } } ] }',
3598       'id': 108,
3599       'caption': '''Device-level network configuration''',
3600       'desc': '''Allows pushing network configuration to be applied for all users of a <ph name="PRODUCT_OS_NAME">$2<ex>Chromium OS</ex></ph> device. The network configuration is a JSON-formatted string as defined by the Open Network Configuration format described at <ph name="ONC_SPEC_URL">https://sites.google.com/a/chromium.org/dev/chromium-os/chromiumos-design-docs/open-network-configuration</ph>''',
3601     },
3602     {
3603       'name': 'CloudPrintSubmitEnabled',
3604       'type': 'main',
3605       'schema': { 'type': 'boolean' },
3606       'supported_on': ['chrome.*:17-'],
3607       'features': {
3608         'dynamic_refresh': True,
3609         'per_profile': True,
3610       },
3611       'example_value': True,
3612       'id': 109,
3613       'caption': '''Enable submission of documents to <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph>''',
3614       'desc': '''Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to submit documents to <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> for printing.  NOTE: This only affects <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> support in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.  It does not prevent users from submitting print jobs on web sites.
3616       If this setting is enabled or not configured, users can print to <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> from the <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> print dialog.
3618       If this setting is disabled, users cannot print to <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> from the <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> print dialog''',
3619     },
3620     {
3621       'name': 'EnterpriseWebStoreURL',
3622       'type': 'string',
3623       'schema': { 'type': 'string' },
3624       'supported_on': ['chrome.*:17-28', 'chrome_os:17-28'],
3625       'features': {
3626         'dynamic_refresh': True,
3627         'per_profile': True,
3628       },
3629       'deprecated': True,
3630       'example_value': 'http://company-intranet/chromeapps',
3631       'id': 112,
3632       'caption': '''Enterprise web store URL (deprecated)''',
3633       'desc': '''This setting has been retired as of <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> version 29. The recommended way to set up organization-hosted extension/app collections is to include the site hosting the CRX packages in ExtensionInstallSources and put direct download links to the packages on a web page. A launcher for that web page can be created using the ExtensionInstallForcelist policy.''',
3634     },
3635     {
3636       'name': 'EnterpriseWebStoreName',
3637       'type': 'string',
3638       'schema': { 'type': 'string' },
3639       'supported_on': ['chrome.*:17-28', 'chrome_os:17-28'],
3640       'features': {
3641         'dynamic_refresh': True,
3642         'per_profile': True,
3643       },
3644       'deprecated': True,
3645       'example_value': 'WidgCo Chrome Apps',
3646       'id': 113,
3647       'caption': '''Enterprise web store name (deprecated)''',
3648       'desc': '''This setting has been retired as of <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> version 29. The recommended way to set up organization-hosted extension/app collections is to include the site hosting the CRX packages in ExtensionInstallSources and put direct download links to the packages on a web page. A launcher for that web page can be created using the ExtensionInstallForcelist policy.''',
3649     },
3650     {
3651       'name': 'EnableOriginBoundCerts',
3652       'type': 'main',
3653       'schema': { 'type': 'boolean' },
3654       'supported_on': ['chrome.*:17-35'],
3655       'features': {
3656         'dynamic_refresh': True,
3657         'per_profile': False,
3658       },
3659       'deprecated': True,
3660       'future': True,
3661       'example_value': True,
3662       'id': 114,
3663       'caption': '''Enable TLS domain-bound certificates extension (deprecated)''',
3664       'desc': '''This policy has been retired as of <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> version 36.
3666       Specifies whether the TLS domain-bound certificates extension should be enabled.
3668       This setting is used to enable the TLS domain-bound certificates extension for testing.  This experimental setting will be removed in the future.''',
3669     },
3670     {
3671       'name': 'EnableMemoryInfo',
3672       'type': 'main',
3673       'schema': { 'type': 'boolean' },
3674       'supported_on': ['chrome.*:17-34', 'chrome_os:18-34'],
3675       'features': {
3676         'dynamic_refresh': True,
3677         'per_profile': True,
3678       },
3679       'deprecated': True,
3680       'future': True,
3681       'example_value': False,
3682       'id': 115,
3683       'caption': '''Enable reporting memory info (JS heap size) to page (deprecated)''',
3684       'desc': '''This policy has been retired as of <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> version 35.
3686       Memory info is anyway reported to page, regardless of the option value, but the sizes reported are
3687       quantized and the rate of updates is limited for security reasons. To obtain real-time precise data,
3688       please use tools like Telemetry.''',
3689     },
3690     {
3691       'name': 'DisablePrintPreview',
3692       'type': 'main',
3693       'schema': { 'type': 'boolean' },
3694       'supported_on': ['chrome.*:18-38'],
3695       'deprecated': True,
3696       'features': {
3697         'dynamic_refresh': False,
3698         'per_profile': True,
3699       },
3700       'example_value': False,
3701       'id': 117,
3702       'caption': '''Disable Print Preview (deprecated)''',
3703       'desc': '''This setting has been retired as of <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> version 39.
3705       Show the system print dialog instead of print preview.
3707       When this setting is enabled, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will open the system print dialog instead of the built-in print preview when a user requests a page to be printed.
3709       If this policy is not set or is set to false, print commands trigger the print preview screen.''',
3710     },
3711     {
3712       'name': 'DisableSSLRecordSplitting',
3713       'type': 'main',
3714       'schema': { 'type': 'boolean' },
3715       'supported_on': ['chrome.*:18-', 'chrome_os:18-'],
3716       'features': {
3717         'dynamic_refresh': True,
3718         'per_profile': False,
3719       },
3720       'example_value': True,
3721       'id': 118,
3722       'caption': '''Disable SSL record splitting''',
3723       'desc': '''Specifies whether SSL record splitting should be disabled. Record splitting is a workaround for a weakness in SSL 3.0 and TLS 1.0 but can cause compatibility issues with some HTTPS servers and proxies.
3725       If the policy is not set, or is set to false, then record splitting will be used on SSL/TLS connections which use CBC ciphersuites.''',
3726     },
3727     {
3728       'name': 'EnableOnlineRevocationChecks',
3729       'type': 'main',
3730       'schema': { 'type': 'boolean' },
3731       'supported_on': ['chrome.*:19-', 'chrome_os:19-'],
3732       'features': {
3733         'dynamic_refresh': True,
3734         'per_profile': False,
3735       },
3736       'example_value': False,
3737       'id': 129,
3738       'caption': '''Whether online OCSP/CRL checks are performed''',
3739       'desc': '''In light of the fact that soft-fail, online revocation checks provide no effective security benefit, they are disabled by default in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> version 19 and later. By setting this policy to true, the previous behavior is restored and online OCSP/CRL checks will be performed.
3741       If the policy is not set, or is set to false, then <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will not perform online revocation checks in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> 19 and later.''',
3742     },
3743     {
3744       'name': 'RequireOnlineRevocationChecksForLocalAnchors',
3745       'type': 'main',
3746       'schema': { 'type': 'boolean' },
3747       'supported_on': ['chrome_os:30-', 'chrome.linux:30-', 'chrome.win:30-'],
3748       'features': {
3749         'dynamic_refresh': True,
3750         'per_profile': False,
3751       },
3752       'example_value': False,
3753       'id': 235,
3754       'caption': '''Whether online OCSP/CRL checks are required for local trust anchors''',
3755       'desc': '''When this setting is enabled, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will always perform revocation checking for server certificates that successfully validate and are signed by locally-installed CA certificates.
3757       If <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> is unable to obtain revocation status information, such certificates will be treated as revoked ('hard-fail').
3759       If this policy is not set, or it is set to false, then <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use the existing online revocation checking settings.''',
3760     },
3761     {
3762       'name': 'ForceEphemeralProfiles',
3763       'type': 'main',
3764       'schema': { 'type': 'boolean' },
3765       'supported_on': ['chrome.*:32-'],
3766       'features': {
3767         'dynamic_refresh': False,
3768         'per_profile': True,
3769       },
3770       'example_value': True,
3771       'id': 245,
3772       'caption': '''Ephemeral profile''',
3773       'desc': '''If set to enabled this policy forces the profile to be switched to ephemeral mode. If this policy is specified as an OS policy (e.g. GPO on Windows) it will apply to every profile on the system; if the policy is set as a Cloud policy it will apply only to a profile signed in with a managed account.
3775       In this mode the profile data is persisted on disk only for the length of the user session. Features like browser history, extensions and their data, web data like cookies and web databases are not preserved after the browser is closed. However this does not prevent the user from downloading any data to disk manually, save pages or print them.
3777       If the user has enabled sync all this data is preserved in his sync profile just like with regular profiles. Incognito mode is also available if not explicitly disabled by policy.
3779       If the policy is set to disabled or left not set signing in leads to regular profiles.'''
3780     },
3781     {
3782       'name': 'SAMLOfflineSigninTimeLimit',
3783       'type': 'int',
3784       'schema': { 'type': 'integer', 'minimum': -1 },
3785       'supported_on': ['chrome_os:34-'],
3786       'features': {
3787         'dynamic_refresh': True,
3788         'per_profile': True,
3789       },
3790       'example_value': 32,
3791       'id': 254,
3792       'caption': '''Limit the time for which a user authenticated via SAML can log in offline''',
3793       'desc': '''Limit the time for which a user authenticated via SAML can log in offline.
3795       During login, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can authenticate against a server (online) or using a cached password (offline).
3797       When this policy is set to a value of -1, the user can authenticate offline indefinitely. When this policy is set to any other value, it specifies the length of time since the last online authentication after which the user must use online authentication again.
3799       Leaving this policy not set will make <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> use a default time limit of 14 days after which the user must use online authentication again.
3801       This policy affects only users who authenticated using SAML.
3803       The policy value should be specified in seconds.''',
3804     },
3805     {
3806       'name': 'AutoCleanUpStrategy',
3807       'type': 'string-enum',
3808       'schema': {
3809         'type': 'string',
3810         'enum': [ 'remove-lru', 'remove-lru-if-dormant' ],
3811       },
3812       'items': [
3813         {
3814           'name': 'RemoveLRU',
3815           'value': 'remove-lru',
3816           'caption': '''Least recently used users are removed until there is enough free space''',
3817         },
3818         {
3819           'name': 'RemoveLRUIfDormant',
3820           'value': 'remove-lru-if-dormant',
3821           'caption': '''Least recently used users who have not logged in within last 3 months are removed until there is enough free space''',
3822         },
3823       ],
3824       'supported_on': ['chrome_os:32-35'],
3825       'device_only': True,
3826       'features': {
3827         'dynamic_refresh': True,
3828       },
3829       'deprecated': True,
3830       'example_value': 'remove-lru',
3831       'id': 246,
3832       'caption': '''Selects the strategy used to free up disk space during automatic clean-up (deprecated)''',
3833       'desc': '''This policy is deprecated. <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will always use the 'RemoveLRU' clean-up strategy.
3835       Controls the automatic clean-up behavior on <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> devices. Automatic clean-up is triggered when the amount of free disk space reaches a critical level to recover some disk space.
3837       If this policy is set to 'RemoveLRU', the automatic clean-up will keep removing users from the device in least-recently-logged-in order until there is enough free space.
3839       If this policy is set to 'RemoveLRUIfDormant', the automatic clean-up will keep removing users who have not logged in for at least 3 months in least-recently-logged-in order until there is enough free space.
3841       If this policy is not set, automatic clean-up uses the default built-in strategy. Currently, it is the 'RemoveLRUIfDormant' strategy.'''
3842     },
3843     {
3844       'name': 'ReportDeviceVersionInfo',
3845       'type': 'main',
3846       'schema': { 'type': 'boolean' },
3847       'supported_on': ['chrome_os:18-'],
3848       'device_only': True,
3849       'features': {
3850         'dynamic_refresh': True,
3851       },
3852       'example_value': False,
3853       'id': 119,
3854       'caption': '''Report OS and firmware version''',
3855       'desc': '''Report OS and firmware version of enrolled devices.
3857       If this setting is not set or set to True, enrolled devices will report the OS and firmware version periodically. If this setting is set to False, version info will not be reported.''',
3858     },
3859     {
3860       'name': 'ReportDeviceActivityTimes',
3861       'type': 'main',
3862       'schema': { 'type': 'boolean' },
3863       'supported_on': ['chrome_os:18-'],
3864       'device_only': True,
3865       'features': {
3866         'dynamic_refresh': True,
3867       },
3868       'example_value': False,
3869       'id': 120,
3870       'caption': '''Report device activity times''',
3871       'desc': '''Report device activity times.
3873       If this setting is not set or set to True, enrolled devices will report time periods when a user is active on the device. If this setting is set to False, device activity times will not be recorded or reported.''',
3874     },
3875     {
3876       'name': 'ReportDeviceBootMode',
3877       'type': 'main',
3878       'schema': { 'type': 'boolean' },
3879       'supported_on': ['chrome_os:18-'],
3880       'device_only': True,
3881       'features': {
3882         'dynamic_refresh': True,
3883       },
3884       'example_value': False,
3885       'id': 121,
3886       'caption': '''Report device boot mode''',
3887       'desc': '''Report the state of the device's dev switch at boot.
3889       If the policy is set to false, the state of the dev switch will not be reported.''',
3890     },
3891     {
3892       'name': 'ReportDeviceLocation',
3893       'type': 'main',
3894       'schema': { 'type': 'boolean' },
3895       'supported_on': ['chrome_os:20-'],
3896       'device_only': True,
3897       'features': {
3898         'dynamic_refresh': True,
3899       },
3900       'future': True,
3901       'example_value': False,
3902       'id': 143,
3903       'caption': '''Report device location''',
3904       'desc': '''Report the geographic location of the device.
3906       If the policy is not set, or set to false, the location will not be reported.''',
3907     },
3908     {
3909       'name': 'ReportDeviceNetworkInterfaces',
3910       'type': 'main',
3911       'schema': { 'type': 'boolean' },
3912       'supported_on': ['chrome_os:29-'],
3913       'device_only': True,
3914       'features': {
3915         'dynamic_refresh': True,
3916       },
3917       'example_value': False,
3918       'id': 224,
3919       'caption': '''Report device network interfaces''',
3920       'desc': '''Report list of network interfaces with their types and hardware addresses to the server.
3922       If the policy is set to false, the interface list will not be reported.''',
3923     },
3924     {
3925       'name': 'ReportDeviceUsers',
3926       'type': 'main',
3927       'schema': { 'type': 'boolean' },
3928       'supported_on': ['chrome_os:32-'],
3929       'device_only': True,
3930       'features': {
3931         'dynamic_refresh': True,
3932       },
3933       'example_value': False,
3934       'id': 248,
3935       'caption': '''Report device users''',
3936       'desc': '''Report list of device users that have recently logged in.
3938       If the policy is set to false, the users will not be reported.''',
3939     },
3940     {
3941       'name': 'DeviceUserWhitelist',
3942       'type': 'list',
3943       'schema': {
3944         'type': 'array',
3945         'items': { 'type': 'string' },
3946       },
3947       'supported_on': ['chrome_os:12-'],
3948       'device_only': True,
3949       'features': {
3950         'dynamic_refresh': True,
3951       },
3952       'example_value': [ 'madmax@managedchrome.com' ],
3953       'id': 122,
3954       'caption': '''Login user white list''',
3955       'desc': '''Defines the list of users that are allowed to login to the device. Entries are of the form <ph name="USER_WHITELIST_ENTRY_FORMAT">user@domain</ph>, such as <ph name="USER_WHITELIST_ENTRY_EXAMPLE">madmax@managedchrome.com</ph>. To allow arbitrary users on a domain, use entries of the form <ph name="USER_WHITELIST_ENTRY_WILDCARD">*@domain</ph>.
3957       If this policy is not configured, there are no restrictions on which users are allowed to sign in. Note that creating new users still requires the <ph name="DEVICEALLOWNEWUSERS_POLICY_NAME">DeviceAllowNewUsers</ph> policy to be configured appropriately.''',
3958     },
3959     {
3960       'name': 'DeviceAllowNewUsers',
3961       'type': 'main',
3962       'schema': { 'type': 'boolean' },
3963       'supported_on': ['chrome_os:12-'],
3964       'device_only': True,
3965       'features': {
3966         'dynamic_refresh': True,
3967       },
3968       'example_value': True,
3969       'id': 123,
3970       'caption': '''Allow creation of new user accounts''',
3971       'desc': '''Controls whether <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> allows new user accounts to be created. If this policy is set to false, users that do not have an account already will not be able to login.
3973       If this policy is set to true or not configured, new user accounts will be allowed to be created provided that <ph name="DEVICEUSERWHITELISTPROTO_POLICY_NAME">DeviceUserWhitelist</ph> does not prevent the user from logging in.''',
3974     },
3975     {
3976       'name': 'DeviceGuestModeEnabled',
3977       'type': 'main',
3978       'schema': { 'type': 'boolean' },
3979       'supported_on': ['chrome_os:12-'],
3980       'device_only': True,
3981       'features': {
3982         'dynamic_refresh': True,
3983       },
3984       'example_value': True,
3985       'id': 124,
3986       'caption': '''Enable guest mode''',
3987       'desc': '''If this policy is set to true or not configured, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will enable guest logins. Guest logins are anonymous user sessions and do not require a password.
3989       If this policy is set to false, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will not allow guest sessions to be started.''',
3990     },
3991     {
3992       'name': 'DeviceShowUserNamesOnSignin',
3993       'type': 'main',
3994       'schema': { 'type': 'boolean' },
3995       'supported_on': ['chrome_os:12-'],
3996       'device_only': True,
3997       'features': {
3998         'dynamic_refresh': True,
3999       },
4000       'example_value': True,
4001       'id': 125,
4002       'caption': '''Show usernames on login screen''',
4003       'desc': '''If this policy is set to true or not configured, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will show existing users on the login screen and allow to pick one. If this policy is set to false, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will use the username/password prompt for login.''',
4004     },
4005     {
4006       'name': 'DeviceDataRoamingEnabled',
4007       'type': 'main',
4008       'schema': { 'type': 'boolean' },
4009       'supported_on': ['chrome_os:12-'],
4010       'device_only': True,
4011       'features': {
4012         'dynamic_refresh': True,
4013       },
4014       'example_value': True,
4015       'id': 126,
4016       'caption': '''Enable data roaming''',
4017       'desc': '''Determines whether data roaming should be enabled for the device. If set to true, data roaming is allowed. If left unconfigured or set to false, data roaming will be not available.''',
4018     },
4019     {
4020       'name': 'DeviceMetricsReportingEnabled',
4021       'type': 'main',
4022       'schema': { 'type': 'boolean' },
4023       'supported_on': ['chrome_os:14-'],
4024       'device_only': True,
4025       'features': {
4026         'dynamic_refresh': True,
4027       },
4028       'example_value': True,
4029       'id': 127,
4030       'caption': '''Enable metrics reporting''',
4031       'desc': '''Controls whether usage metrics are reported back to Google. If set to true, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will report usage metrics. If not configured or set to false, metrics reporting will be disabled.''',
4032     },
4033     {
4034       'name': 'ChromeOsReleaseChannel',
4035       'type': 'string-enum',
4036       'schema': {
4037         'type': 'string',
4038         'enum': [ 'stable-channel', 'beta-channel', 'dev-channel' ],
4039       },
4040       'items': [
4041         {
4042           'name': 'StableChannel',
4043           'value': 'stable-channel',
4044           'caption': '''Stable channel''',
4045         },
4046         {
4047           'name': 'BetaChannel',
4048           'value': 'beta-channel',
4049           'caption': '''Beta channel''',
4050         },
4051         {
4052           'name': 'DevChannel',
4053           'value': 'dev-channel',
4054           'caption': '''Dev channel (may be unstable)''',
4055         },
4056       ],
4057       'supported_on': ['chrome_os:11-'],
4058       'device_only': True,
4059       'features': {
4060         'dynamic_refresh': True,
4061       },
4062       'example_value': 'stable-channel',
4063       'id': 91,
4064       'caption': '''Release channel''',
4065       'desc': '''Specifies the release channel that this device should be locked to.''',
4066     },
4067     {
4068       'name': 'ChromeOsReleaseChannelDelegated',
4069       'type': 'main',
4070       'schema': { 'type': 'boolean' },
4071       'supported_on': ['chrome_os:19-'],
4072       'device_only': True,
4073       'features': {
4074         'dynamic_refresh': True,
4075       },
4076       'example_value': False,
4077       'id': 134,
4078       'caption': '''Whether the release channel should be configurable by the user''',
4079       'desc': '''If this policy is set to True and the ChromeOsReleaseChannel policy is not specified then users of the enrolling domain will be allowed to change the release channel of the device. If this policy is set to false the device will be locked in whatever channel it was last set.
4081       The user selected channel will be overridden by the ChromeOsReleaseChannel policy, but if the policy channel is more stable than the one that was installed on the device, then the channel will only switch after the version of the more stable channel reaches a higher version number than the one installed on the device.''',
4082     },
4083     {
4084       'name': 'DeviceEphemeralUsersEnabled',
4085       'type': 'main',
4086       'schema': { 'type': 'boolean' },
4087       'supported_on': ['chrome_os:19-'],
4088       'device_only': True,
4089       'features': {
4090         'dynamic_refresh': True,
4091       },
4092       'example_value': True,
4093       'id': 128,
4094       'caption': '''Wipe user data on sign-out''',
4095       'desc': '''Determines whether <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> keeps local account data after logout. If set to true, no persistent accounts are kept by <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> and all data from the user session will be discarded after logout. If this policy is set to false or not configured, the device may keep (encrypted) local user data.''',
4096     },
4097     {
4098       'name': 'DeviceStartUpUrls',
4099       'type': 'list',
4100       'schema': {
4101         'type': 'array',
4102         'items': { 'type': 'string' },
4103       },
4104       'supported_on': ['chrome_os:19-'],
4105       'device_only': True,
4106       'features': {
4107         'dynamic_refresh': True,
4108       },
4109       'example_value': [ 'http://google.com', 'chrome-extension://aaaaaaaaaaaaaaaaaaaaaaaa/' ],
4110       'id': 137,
4111       'caption': '''Load specified urls on demo login''',
4112       'desc': '''This policy is active in retail mode only.
4114       Determines the set of URLs to be loaded when the demo session is started. This policy will override any other mechanisms for setting the initial URL and thus can only be applied to a session not associated with a particular user.''',
4115     },
4116     {
4117       'name': 'DeviceIdleLogoutTimeout',
4118       'type': 'int',
4119       'schema': { 'type': 'integer' },
4120       'supported_on': ['chrome_os:19-'],
4121       'device_only': True,
4122       'features': {
4123         'dynamic_refresh': True,
4124       },
4125       'example_value': 60000,
4126       'id': 130,
4127       'caption': '''Timeout until idle user log-out is executed''',
4128       'desc': '''This policy is active in retail mode only.
4130       When the value of this policy is set and is not 0 then the currently logged in demo user will be logged out automatically after an inactivity time of the specified duration has elapsed.
4132       The policy value should be specified in milliseconds.''',
4133     },
4134     {
4135       'name': 'DeviceIdleLogoutWarningDuration',
4136       'type': 'int',
4137       'schema': { 'type': 'integer' },
4138       'supported_on': ['chrome_os:19-'],
4139       'device_only': True,
4140       'features': {
4141         'dynamic_refresh': True,
4142       },
4143       'example_value': 15000,
4144       'id': 131,
4145       'caption': '''Duration of the idle log-out warning message''',
4146       'desc': '''This policy is active in retail mode only.
4148       When DeviceIdleLogoutTimeout is specified this policy defines the duration of the warning box with a count down timer that is shown to the user before the logout is executed.
4150       The policy value should be specified in milliseconds.''',
4151     },
4152     {
4153       'name': 'DeviceLoginScreenSaverId',
4154       'type': 'string',
4155       'schema': { 'type': 'string' },
4156       'supported_on': ['chrome_os:19-'],
4157       'device_only': True,
4158       'features': {
4159         'dynamic_refresh': True,
4160       },
4161       'example_value': 'fhblcfnmnbehmifidkddcenilbpddlfk',
4162       'id': 132,
4163       'caption': '''Screen saver to be used on the sign-in screen in retail mode''',
4164       'desc': '''This policy is active in retail mode only.
4166       Determines the id of the extension to be used as a screen saver on the sign-in screen. The extension must be part of the AppPack that is configured for this domain through the DeviceAppPack policy.''',
4167     },
4168     {
4169       'name': 'DeviceLoginScreenSaverTimeout',
4170       'type': 'int',
4171       'schema': { 'type': 'integer' },
4172       'supported_on': ['chrome_os:19-'],
4173       'device_only': True,
4174       'features': {
4175         'dynamic_refresh': True,
4176       },
4177       'example_value': 120000,
4178       'id': 133,
4179       'caption': '''Duration of inactivity before the screen saver is shown on the sign-in screen in retail mode''',
4180       'desc': '''This policy is active in retail mode only.
4182       Determines the duration before the screen saver is shown on the sign-in screen for devices in retail mode.
4184       The policy value should be specified in milliseconds.''',
4185     },
4186     {
4187       'name': 'DeviceAppPack',
4188       'type': 'list',
4189       'schema': {
4190         'type': 'array',
4191         'items': { 'type': 'string' },
4192       },
4193       'supported_on': ['chrome_os:19-'],
4194       'device_only': True,
4195       'features': {
4196         'dynamic_refresh': True,
4197       },
4198       'example_value': [ { "extension-id": "khgabmflimjjbclkmljlpmgaleanedem", "update-url": "http://clients2.google.com/service/update2/crx" } ],
4199       'id': 135,
4200       'caption': '''List of AppPack extensions''',
4201       'desc': '''This policy is active in retail mode only.
4203       Lists extensions that are automatically installed for the Demo user, for devices in retail mode. These extensions are saved in the device and can be installed while offline, after the installation.
4205       Each list entry contains a dictionary that must include the extension ID in the 'extension-id' field, and its update URL in the 'update-url' field.''',
4206     },
4207     {
4208       'name': 'DeviceAutoUpdateDisabled',
4209       'type': 'main',
4210       'schema': { 'type': 'boolean' },
4211       'supported_on': ['chrome_os:19-'],
4212       'device_only': True,
4213       'features': {
4214         'dynamic_refresh': True,
4215       },
4216       'example_value': True,
4217       'id': 136,
4218       'caption': '''Disables Auto Update''',
4219       'desc': '''Disables automatic updates when set to True.
4221       <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> devices automatically check for updates when this setting is not configured or set to False.''',
4222     },
4223     {
4224       'name': 'DeviceAutoUpdateP2PEnabled',
4225       'type': 'main',
4226       'schema': { 'type': 'boolean' },
4227       'supported_on': ['chrome_os:31-'],
4228       'device_only': True,
4229       'features': {
4230         'dynamic_refresh': True,
4231       },
4232       'example_value': False,
4233       'id': 242,
4234       'caption': '''Auto update p2p enabled''',
4235       'desc': '''Specifies whether p2p is to be used for OS update payloads. If set to True, devices will share and attempt to consume update payloads on the LAN, potentially reducing Internet bandwidth usage and congestion. If the update payload is not available on the LAN, the device will fall back to downloading from an update server. If set to False or not configured, p2p will not be used.''',
4236     },
4237     {
4238       'name': 'DeviceTargetVersionPrefix',
4239       'type': 'string',
4240       'schema': { 'type': 'string' },
4241       'supported_on': ['chrome_os:19-'],
4242       'device_only': True,
4243       'features': {
4244         'dynamic_refresh': True,
4245       },
4246       'example_value': '1412.',
4247       'id': 142,
4248       'caption': '''Target Auto Update Version''',
4249       'desc': '''Sets a target version for Auto Updates.
4251       Specifies the prefix of a target version <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> should update to. If the device is running a version that's before the specified prefix, it will update to the latest version with the given prefix. If the device is already on a later version, there is no effect (i.e. no downgrades are performed) and the device will remain on the current version. The prefix format works component-wise as is demonstrated in the following example:
4253       "" (or not configured): update to latest version available.
4254       "1412.": update to any minor version of 1412 (e.g. 1412.24.34 or 1412.60.2)
4255       "1412.2.": update to any minor version of 1412.2 (e.g. 1412.2.34 or 1412.2.2)
4256       "1412.24.34": update to this specific version only''',
4257     },
4258     {
4259       'name': 'DeviceUpdateScatterFactor',
4260       'type': 'int',
4261       'schema': { 'type': 'integer' },
4262       'supported_on': ['chrome_os:20-'],
4263       'device_only': True,
4264       'features': {
4265         'dynamic_refresh': True,
4266       },
4267       'example_value': 7200,
4268       'id': 145,
4269       'caption': '''Auto update scatter factor''',
4270       'desc': '''Specifies the number of seconds up to which a device may randomly delay its download of an update from the time the update was first pushed out to the server. The device may wait a portion of this time in terms of wall-clock-time and the remaining portion in terms of the number of update checks. In any case, the scatter is upper bounded to a constant amount of time so that a device does not ever get stuck waiting to download an update forever.''',
4271     },
4272     {
4273       'name': 'DeviceUpdateAllowedConnectionTypes',
4274       'type': 'list',
4275       'schema': {
4276         'type': 'array',
4277         'items': { 'type': 'string' },
4278       },
4279       'supported_on': ['chrome_os:21-'],
4280       'device_only': True,
4281       'features': {
4282         'dynamic_refresh': True,
4283       },
4284       'example_value': [ 'ethernet' ],
4285       'id': 146,
4286       'caption': '''Connection types allowed for updates''',
4287       'desc': ''' The types of connections that are allowed to use for OS updates. OS updates potentially put heavy strain on the connection due to their size and may incur additional cost. Therefore, they are by default not enabled for connection types that are considered expensive, which include WiMax, Bluetooth and Cellular at the moment.
4289       The recognized connection type identifiers are "ethernet", "wifi", "wimax", "bluetooth" and "cellular".''',
4290     },
4291     {
4292       'name': 'DeviceUpdateHttpDownloadsEnabled',
4293       'type': 'main',
4294       'schema': {
4295         'type': 'boolean',
4296       },
4297       'supported_on': ['chrome_os:29-'],
4298       'device_only': True,
4299       'features': {
4300         'dynamic_refresh': True,
4301       },
4302       'example_value': True,
4303       'id': 243,
4304       'caption': '''Allow autoupdate downloads via HTTP''',
4305       'desc': '''Auto-update payloads on <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can be downloaded via HTTP instead of HTTPS. This allows transparent HTTP caching of HTTP downloads.
4307       If this policy is set to true, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will attempt to download auto-update payloads via HTTP. If the policy is set to false or not set, HTTPS will be used for downloading auto-update payloads.''',
4308     },
4309     {
4310       'name': 'DeviceLocalAccounts',
4311       'type': 'list',
4312       'schema': {
4313         'type': 'array',
4314         'items': { 'type': 'string' },
4315       },
4316       'supported_on': ['chrome_os:25-'],
4317       'device_only': True,
4318       'features': {
4319         'dynamic_refresh': True,
4320       },
4321       'example_value': [ "demo@example.com" ],
4322       'id': 163,
4323       'caption': '''Device-local accounts''',
4324       'desc': '''Specifies the list of device-local accounts to be shown on the login screen.
4326       Every list entry specifies an identifier, which is used internally to tell the different device-local accounts apart.''',
4327     },
4328     {
4329       'name': 'DeviceLocalAccountAutoLoginId',
4330       'type': 'string',
4331       'schema': { 'type': 'string' },
4332       'supported_on': ['chrome_os:26-'],
4333       'device_only': True,
4334       'features': {
4335         'dynamic_refresh': True,
4336       },
4337       'example_value': "public@example.com",
4338       'id': 194,
4339       'caption': '''Public session for auto-login''',
4340       'desc': '''A public session to auto-login after a delay.
4342       If this policy is set, the specified session will be automatically logged in after a period of time has elapsed at the login screen without user interaction. The public session must already be configured (see |DeviceLocalAccounts|).
4344       If this policy is unset, there will be no auto-login.''',
4345     },
4346     {
4347       'name': 'DeviceLocalAccountAutoLoginDelay',
4348       'type': 'int',
4349       'schema': { 'type': 'integer' },
4350       'supported_on': ['chrome_os:26-'],
4351       'device_only': True,
4352       'features': {
4353         'dynamic_refresh': True,
4354       },
4355       'example_value': 180000,
4356       'id': 195,
4357       'caption': '''Public session auto-login timer''',
4358       'desc': '''The public session auto-login delay.
4360       If the |DeviceLocalAccountAutoLoginId| policy is unset, this policy has no effect. Otherwise:
4362       If this policy is set, it determines the amount of time without user activity that should elapse before automatically logging into the public session specified by the |DeviceLocalAccountAutoLoginId| policy.
4364       If this policy is unset, 0 milliseconds will be used as the timeout.
4366       This policy is specified in milliseconds.'''
4367     },
4368     {
4369       'name': 'DeviceLocalAccountAutoLoginBailoutEnabled',
4370       'type': 'main',
4371       'schema': { 'type': 'boolean' },
4372       'supported_on': ['chrome_os:28-'],
4373       'device_only': True,
4374       'features': {
4375         'dynamic_refresh': True,
4376       },
4377       'example_value': True,
4378       'id': 202,
4379       'caption': '''Enable bailout keyboard shortcut for auto-login''',
4380       'desc': '''Enable bailout keyboard shortcut for auto-login.
4382       If this policy is unset or set to True and a device-local account is configured for zero-delay auto-login, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will honor the keyboard shortcut Ctrl+Alt+S for bypassing auto-login and showing the login screen.
4384       If this policy is set to False, zero-delay auto-login (if configured) cannot be bypassed.'''
4385     },
4386     {
4387       'name': 'DeviceLocalAccountPromptForNetworkWhenOffline',
4388       'type': 'main',
4389       'schema': { 'type': 'boolean' },
4390       'supported_on': ['chrome_os:33-'],
4391       'device_only': True,
4392       'features': {
4393         'dynamic_refresh': True,
4394       },
4395       'example_value': True,
4396       'id': 250,
4397       'caption': '''Enable network configuration prompt when offline''',
4398       'desc': '''Enable network configuration prompt when offline.
4400       If this policy is unset or set to True and a device-local account is configured for zero-delay auto-login and the device does not have access to the Internet, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will show a network configuration prompt.
4402       If this policy is set to False, an error message will be displayed instead of the network configuration prompt.'''
4403     },
4404     {
4405       'name': 'DeviceBlockDevmode',
4406       'type': 'main',
4407       'schema': { 'type': 'boolean' },
4408       'supported_on': ['chrome_os:37-'],
4409       'device_only': True,
4410       'features': {
4411         'dynamic_refresh': True,
4412       },
4413       'example_value': True,
4414       'id': 266,
4415       'caption': '''Block developer mode''',
4416       'desc': '''Block developer mode.
4418       If this policy is set to True, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will prevent the device from booting into developer mode. The system will refuse to boot and show an error screen when the developer switch is turned on.
4420       If this policy is unset or set to False, developer mode will remain available for the device.'''
4421     },
4422     {
4423       'name': 'BackgroundModeEnabled',
4424       'type': 'main',
4425       'schema': { 'type': 'boolean' },
4426       'supported_on': ['chrome.win:19-', 'chrome.linux:19-'],
4427       'features': {
4428         'can_be_recommended': True,
4429         'dynamic_refresh': True,
4430         'per_profile': False,
4431       },
4432       'example_value': True,
4433       'id': 138,
4434       'caption': '''Continue running background apps when <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> is closed''',
4435       'desc': '''Determines whether a <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> process is started on OS login and keeps running when the last browser window is closed, allowing background apps to remain active. The background process displays an icon in the system tray and can always be closed from there.
4437       If this policy is set to True, background mode is enabled and cannot be controlled by the user in the browser settings.
4439       If this policy is set to False, background mode is disabled and cannot be controlled by the user in the browser settings.
4441       If this policy is left unset, background mode is initially disabled and can be controlled by the user in the browser settings.''',
4442     },
4443     {
4444       'name': 'Drive',
4445       'type': 'group',
4446       'caption': '''Configure Google Drive options''',
4447       'desc': '''Configure Google Drive in <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph>.''',
4448       'policies': [
4449         {
4450           'name': 'DriveDisabled',
4451           'type': 'main',
4452           'schema': { 'type': 'boolean' },
4453           'supported_on': ['chrome_os:19-'],
4454           'features': {
4455             'dynamic_refresh': True,
4456             'per_profile': True,
4457           },
4458           'example_value': True,
4459           'id': 139,
4460           'caption': '''Disables Drive in the <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> Files app''',
4461           'desc': '''Disables Google Drive syncing in the <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> Files app when set to True. In that case, no data is uploaded to Google Drive.
4463           If not set or set to False, then users will be able to transfer files to Google Drive.''',
4464         },
4465         {
4466           'name': 'DriveDisabledOverCellular',
4467           'type': 'main',
4468           'schema': { 'type': 'boolean' },
4469           'supported_on': ['chrome_os:19-'],
4470           'features': {
4471             'dynamic_refresh': True,
4472             'per_profile': True,
4473           },
4474           'example_value': True,
4475           'id': 140,
4476           'caption': '''Disables Google Drive over cellular connections in the <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> Files app''',
4477           'desc': '''Disables Google Drive syncing in the <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> Files app when using a cellular connection when set to True. In that case, data is only synced to Google Drive when connected via WiFi or Ethernet.
4479           If not set or set to False, then users will be able to transfer files to Google Drive via cellular connections.''',
4480         },
4481       ],
4482     },
4483     {
4484       'name': 'PinnedLauncherApps',
4485       'type': 'list',
4486       'schema': {
4487         'type': 'array',
4488         'items': { 'type': 'string' },
4489       },
4490       'supported_on': ['chrome_os:20-' ],
4491       'features': {
4492         'can_be_recommended': True,
4493         'dynamic_refresh': True,
4494         'per_profile': True,
4495       },
4496       'example_value': ['pjkljhegncpnkpknbcohdijeoejaedia'],
4497       'id': 144,
4498       'caption': '''List of pinned apps to show in the launcher''',
4499       'desc': '''Lists the application identifiers <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> shows as pinned apps in the launcher bar.
4501       If this policy is configured, the set of applications is fixed and can't be changed by the user.
4503       If this policy is left unset, the user may change the list of pinned apps in the launcher.''',
4504     },
4505     {
4506       'name': 'RestrictSigninToPattern',
4507       'type': 'string',
4508       'schema': { 'type': 'string' },
4509       'supported_on': ['chrome.*:21-'],
4510       'features': {
4511         'dynamic_refresh': True,
4512         'per_profile': False,
4513       },
4514       'example_value': '*@domain.com',
4515       'id': 147,
4516       'caption': '''Restrict which users are allowed to sign in to <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>''',
4517       'desc': '''Contains a regular expression which is used to determine which users can sign in to <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
4519       An appropriate error is displayed if a user tries to log in with a username that does not match this pattern.
4521       If this policy is left not set or blank, then any user can sign in to <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''',
4522     },
4523     {
4524       'name': 'DisableSafeBrowsingProceedAnyway',
4525       'type': 'main',
4526       'schema': { 'type': 'boolean' },
4527       'supported_on': ['chrome.*:22-', 'chrome_os:22-', 'android:30-'],
4528       'features': {
4529         'dynamic_refresh': True,
4530         'per_profile': True,
4531       },
4532       'example_value': True,
4533       'id': 150,
4534       'caption': '''Disable proceeding from the Safe Browsing warning page''',
4535       'desc': '''The Safe Browsing service shows a warning page when users navigate to sites that are flagged as potentially malicious. Enabling this setting prevents users from proceeding anyway from the warning page to the malicious site.
4537       If this setting is disabled or not configured then users can choose to proceed to the flagged site after being shown the warning.''',
4538     },
4539     {
4540       'name': 'SpellCheckServiceEnabled',
4541       'type': 'main',
4542       'schema': { 'type': 'boolean' },
4543       'supported_on': ['chrome.*:22-', 'chrome_os:22-'],
4544       'features': {
4545         'can_be_recommended': True,
4546         'dynamic_refresh': True,
4547         'per_profile': True,
4548       },
4549       'example_value': False,
4550       'id': 151,
4551       'caption': '''Enable or disable spell checking web service''',
4552       'desc': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> can use a Google web service to help resolve spelling errors. If this setting is enabled, then this service is always used. If this setting is disabled, then this service is never used.
4554       Spell checking can still be performed using a downloaded dictionary; this policy only controls the usage of the online service.
4556       If this setting is not configured then users can choose whether the spell checking service should be used or not.''',
4557     },
4558     {
4559       'name': 'ExternalStorageDisabled',
4560       'type': 'main',
4561       'schema': { 'type': 'boolean' },
4562       'supported_on': ['chrome_os:22-'],
4563       'features': {
4564         'dynamic_refresh': True,
4565         'per_profile': True,
4566       },
4567       'example_value': True,
4568       'id': 152,
4569       'caption': '''Disable mounting of external storage''',
4570       'desc': '''Disable mounting of external storage.
4572       When this policy is set to true, external storage will not be available in the file browser.
4574       This policy affects all types of storage media. For example: USB flash drives, external hard drives, SD and other memory cards, optical storage etc. Internal storage is not affected, therefore files saved in the Download folder can still be accessed. Google Drive is also not affected by this policy.
4576       If this setting is disabled or not configured then users can use all supported types of external storage on their device.''',
4577     },
4578     {
4579       'name': 'AudioOutputAllowed',
4580       'type': 'main',
4581       'schema': { 'type': 'boolean' },
4582       'supported_on': ['chrome_os:23-'],
4583       'features': {
4584         'dynamic_refresh': True,
4585         'per_profile': False,
4586       },
4587       'example_value': False,
4588       'id': 159,
4589       'caption': '''Allow playing audio''',
4590       'desc': '''Allow playing audio.
4592       When this policy is set to false, audio output will not be available on the device while the user is logged in.
4594       This policy affects all types of audio output and not only the built-in speakers. Audio accessibility features are also inhibited by this policy. Do not enable this policy if a screen reader is required for the user.
4596       If this setting is set to true or not configured then users can use all supported audio outputs on their device.''',
4597     },
4598     {
4599       'name': 'AudioCaptureAllowed',
4600       'type': 'main',
4601       'schema': { 'type': 'boolean' },
4602       'supported_on': ['chrome.*:25-', 'chrome_os:23-'],
4603       'features': {
4604         'dynamic_refresh': True,
4605         'per_profile': False,
4606       },
4607       'example_value': False,
4608       'id': 160,
4609       'caption': '''Allow or deny audio capture''',
4610       'desc': '''Allow or deny audio capture.
4612       If enabled or not configured (default), the user will be prompted for
4613       audio capture access except for URLs configured in the
4614       AudioCaptureAllowedUrls list which will be granted access without prompting.
4616       When this policy is disabled, the user will never be prompted and audio
4617       capture only be available to URLs configured in AudioCaptureAllowedUrls.
4619       This policy affects all types of audio inputs and not only the built-in microphone.''',
4620     },
4621     {
4622       'name': 'AudioCaptureAllowedUrls',
4623       'type': 'list',
4624       'schema': {
4625         'type': 'array',
4626         'items': { 'type': 'string' },
4627       },
4628       'supported_on': ['chrome.*:29-', 'chrome_os:29-'],
4629       'features': {
4630         'dynamic_refresh': True,
4631         'per_profile': True,
4632       },
4633       'example_value': ['http://www.example.com/', 'http://[*.]example.edu/'],
4634       'id': 208,
4635       'caption': '''URLs that will be granted access to audio capture devices without prompt''',
4636       'desc': '''Patterns in this list will be matched against the security
4637       origin of the requesting URL.  If a match is found, access to audio
4638       capture devices will be granted without prompt.
4640       NOTE: This policy is currently only supported when running in Kiosk mode.''',
4641     },
4642     {
4643       'name': 'VideoCaptureAllowed',
4644       'type': 'main',
4645       'schema': { 'type': 'boolean' },
4646       'supported_on': ['chrome.*:25-', 'chrome_os:25-'],
4647       'features': {
4648         'dynamic_refresh': True,
4649         'per_profile': True,
4650       },
4651       'example_value': False,
4652       'id': 167,
4653       'caption': '''Allow or deny video capture''',
4654       'desc': '''Allow or deny video capture.
4656       If enabled or not configured (default), the user will be prompted for
4657       video capture access except for URLs configured in the
4658       VideoCaptureAllowedUrls list which will be granted access without prompting.
4660       When this policy is disabled, the user will never be prompted and video
4661       capture only be available to URLs configured in VideoCaptureAllowedUrls.
4663       This policy affects all types of video inputs and not only the built-in camera.''',
4664     },
4665     {
4666       'name': 'VideoCaptureAllowedUrls',
4667       'type': 'list',
4668       'schema': {
4669         'type': 'array',
4670         'items': { 'type': 'string' },
4671       },
4672       'supported_on': ['chrome.*:29-', 'chrome_os:29-'],
4673       'features': {
4674         'dynamic_refresh': True,
4675         'per_profile': True,
4676       },
4677       'example_value': ['http://www.example.com/', 'http://[*.]example.edu/'],
4678       'id': 209,
4679       'caption': '''URLs that will be granted access to video capture devices without prompt''',
4680       'desc': '''Patterns in this list will be matched against the security
4681       origin of the requesting URL.  If a match is found, access to audio
4682       capture devices will be granted without prompt.
4684       NOTE: This policy is currently only supported when running in Kiosk mode.''',
4685     },
4686     {
4687       'name': 'DisableScreenshots',
4688       'type': 'main',
4689       'schema': { 'type': 'boolean' },
4690       'supported_on': ['chrome_os:22-', 'chrome.*:22-'],
4691       'features': {
4692         'dynamic_refresh': True,
4693         'per_profile': False,
4694       },
4695       'example_value': True,
4696       'id': 153,
4697       'caption': '''Disable taking screenshots''',
4698       'desc': '''Disables taking screenshots.
4700       If enabled screenshots cannot be taken using keyboard shortcuts or extension APIs.
4702       If disabled or not specified, taking screenshots is allowed.'''
4703     },
4704     {
4705       'name': 'SystemTimezone',
4706       'type': 'string',
4707       'schema': { 'type': 'string' },
4708       'supported_on': ['chrome_os:22-'],
4709       'device_only': True,
4710       'features': {
4711         'dynamic_refresh': True,
4712       },
4713       'example_value': 'America/Los_Angeles',
4714       'id': 158,
4715       'caption': '''Timezone''',
4716       'desc': '''Specifies the timezone to be used for the device. Users can override the specified timezone for the current session. However, on logout it is set back to the specified timezone. If an invalid value is provided, the policy is still activated using "GMT" instead. If an empty string is provided, the policy is ignored.
4718       If this policy is not used, the currently active timezone will remain in use however users can change the timezone and the change is persistent. Thus a change by one user affects the login-screen and all other users.
4720       New devices start out with the timezone set to "US/Pacific".
4722       The format of the value follows the names of timezones in the "IANA Time Zone Database" (see "http://en.wikipedia.org/wiki/List_of_tz_database_time"). In particular, most timezones can be referred to by "continent/large_city" or "ocean/large_city".''',
4723     },
4724     {
4725       'name': 'SystemUse24HourClock',
4726       'type': 'main',
4727       'schema': { 'type': 'boolean' },
4728       'supported_on': ['chrome_os:30-'],
4729       'device_only': True,
4730       'features': {
4731         'dynamic_refresh': True,
4732       },
4733       'example_value': True,
4734       'id': 236,
4735       'caption': '''Use 24 hour clock by default''',
4736       'desc': '''Specifies the clock format be used for the device.
4738       This policy configures the clock format to use on the login screen and as a default for user sessions. Users can still override the clock format for their account.
4740       If the policy is set to true, the device will use a 24 hour clock format. If the policy is set to false, the device will use 12 hour clock format.
4742       If this policy is not set, the device will default to a 24 hour clock format.''',
4743     },
4744     {
4745       'name': 'TouchVirtualKeyboardEnabled',
4746       'type': 'main',
4747       'schema': { 'type': 'boolean' },
4748       'supported_on': ['chrome_os:37-' ],
4749       'features': {
4750         'dynamic_refresh': True,
4751         'per_profile': True
4752       },
4753       'example_value': False,
4754       'id': 269,
4755       'caption': '''Enable virtual keyboard''',
4756       'desc': '''This policy configures enabling the virtual keyboard as an input device on ChromeOS. Users cannot override this policy.
4758       If the policy is set to true, the on-screen virtual keyboard will always be enabled.
4760       If set to false, the on-screen virtual keyboard will always be disabled.
4762       If you set this policy, users cannot change or override it. However, users will still be able to enable/disable an accessibility on-screen keyboard which takes precedence over the virtual keyboard controlled by this policy. See the |VirtualKeyboardEnabled| policy for controlling the accessibility on-screen keyboard.
4764       If this policy is left unset, the on-screen keyboard is disabled initially but can be enabled by the user anytime. Heuristic rules may also be used to decide when to display the keyboard.''',
4765     },
4766     {
4767       'name': 'ShowLogoutButtonInTray',
4768       'type': 'main',
4769       'schema': { 'type': 'boolean' },
4770       'supported_on': ['chrome_os:25-'],
4771       'features': {
4772         'dynamic_refresh': True,
4773         'per_profile': True,
4774       },
4775       'example_value': True,
4776       'id': 164,
4777       'caption': '''Add a logout button to the system tray''',
4778       'desc': '''Adds a logout button to the system tray.
4780       If enabled, a big, red logout button is shown in the system tray while a session is active and the screen is not locked.
4782       If disabled or not specified, no big, red logout button is shown in the system tray.''',
4783     },
4784     {
4785       'name': 'BuiltInDnsClientEnabled',
4786       'type': 'main',
4787       'schema': { 'type': 'boolean' },
4788       'supported_on': ['chrome.*:25-'],
4789       'features': {
4790         'dynamic_refresh': True,
4791         'per_profile': False,
4792       },
4793       'example_value': True,
4794       'id': 165,
4795       'caption': '''Use built-in DNS client''',
4796       'desc': '''Controls whether the built-in DNS client is used in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
4798       If this policy is set to true, the built-in DNS client will be used, if available.
4800       If this policy is set to false, the built-in DNS client will never be used.
4802       If this policy is left not set, the users will be able to change whether the built-in DNS client is used by editing chrome://flags or specifying a command-line flag.''',
4803     },
4804     {
4805       'name': 'ShelfAutoHideBehavior',
4806       'type': 'string-enum',
4807       'schema': {
4808         'type': 'string',
4809         'enum': [
4810           'Always',
4811           'Never'
4812         ],
4813       },
4814       'items': [
4815         {
4816           'name': 'AlwaysAutoHideShelf',
4817           'value': 'Always',
4818           'caption': '''Always auto-hide the shelf''',
4819         },
4820         {
4821           'name': 'NeverAutoHideShelf',
4822           'value': 'Never',
4823           'caption': '''Never auto-hide the shelf''',
4824         },
4825       ],
4826       'supported_on': ['chrome_os:25-'],
4827       'features': {
4828         'can_be_recommended': True,
4829         'dynamic_refresh': True,
4830         'per_profile': False,
4831       },
4832       'example_value': 'Always',
4833       'id': 166,
4834       'caption': '''Control shelf auto-hiding''',
4835       'desc': '''Control auto-hiding of the <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> shelf.
4837       If this policy is set to 'AlwaysAutoHideShelf', the shelf will always auto-hide.
4839       If this policy is set to 'NeverAutoHideShelf', the shelf never auto-hide.
4841       If you set this policy, users cannot change or override it.
4843       If the policy is left not set, users can choose whether the shelf should auto-hide.''',
4844     },
4845     {
4846       'name': 'UserDisplayName',
4847       'type': 'string',
4848       'schema': { 'type': 'string' },
4849       'supported_on': ['chrome_os:25-'],
4850       'features': {
4851         'dynamic_refresh': True,
4852         'per_profile': False,
4853       },
4854       'example_value': 'Policy User',
4855       'id': 169,
4856       'caption': '''Set the display name for device-local accounts''',
4857       'desc': '''Controls the account name <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> shows on the login screen for the corresponding device-local account.
4859       If this policy is set, the login screen will use the specified string in the picture-based login chooser for the corresponding device-local account.
4861       If the policy is left not set, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will use the device-local account's email account ID as the display name on the login screen.
4863       This policy is ignored for regular user accounts.''',
4864     },
4865     {
4866       'name': 'SessionLengthLimit',
4867       'type': 'int',
4868       'schema': { 'type': 'integer' },
4869       'supported_on': ['chrome_os:25-'],
4870       'features': {
4871         'dynamic_refresh': True,
4872         'per_profile': False,
4873       },
4874       'example_value': 3600000,
4875       'id': 170,
4876       'caption': '''Limit the session length''',
4877       'desc': '''Limit the maximum length of a user session.
4879       When this policy is set, it specifies the length of time after which a user is automatically logged out, terminating the session. The user is informed about the remaining time by a countdown timer shown in the system tray.
4881       When this policy is not set, the session length is not limited.
4883       If you set this policy, users cannot change or override it.
4885       The policy value should be specified in milliseconds. Values are clamped to a range of 30 seconds to 24 hours.''',
4886     },
4887     {
4888       'name': 'FullscreenAllowed',
4889       'type': 'main',
4890       'schema': { 'type': 'boolean' },
4891       'supported_on': ['chrome.win:31-', 'chrome.linux:31-', 'chrome_os:31-'],
4892       'features': {
4893         'dynamic_refresh': True,
4894         'per_profile': True,
4895       },
4896       'example_value': True,
4897       'id': 240,
4898       'caption': '''Allow fullscreen mode''',
4899       'desc': '''Allow fullscreen mode.
4901       This policy controls the availability of fullscreen mode in which all <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> UI is hidden and only web content is visible.
4903       If this policy is set to true or not not configured, the user, apps and extensions with appropriate permissions can enter fullscreen mode.
4905       If this policy is set to false, neither the user nor any apps or extensions can enter fullscreen mode.
4907       On all platforms except <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph>, kiosk mode is unavailable when fullscreen mode is disabled.''',
4908     },
4909     {
4910       'name': 'PowerManagement',
4911       'type': 'group',
4912       'caption': '''Power management''',
4913       'desc': '''Configure power management in <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph>.
4915       These policies let you configure how <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> behaves when the user remains idle for some amount of time.''',
4916       'policies': [
4917         {
4918           'name': 'ScreenDimDelayAC',
4919           'type': 'int',
4920           'schema': {
4921             'type': 'integer',
4922             'minimum': 0
4923           },
4924           'supported_on': ['chrome_os:26-'],
4925           'features': {
4926             'dynamic_refresh': True,
4927             'per_profile': False,
4928           },
4929           'deprecated': True,
4930           'example_value': 420000,
4931           'id': 172,
4932           'caption': '''Screen dim delay when running on AC power''',
4933           'desc': '''Specifies the length of time without user input after which the screen is dimmed when running on AC power.
4935           When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> dims the screen.
4937           When this policy is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> does not dim the screen when the user becomes idle.
4939           When this policy is unset, a default length of time is used.
4941           The policy value should be specified in milliseconds. Values are clamped to be less than or equal the screen off delay (if set) and the idle delay.''',
4942         },
4943         {
4944           'name': 'ScreenOffDelayAC',
4945           'type': 'int',
4946           'schema': {
4947             'type': 'integer',
4948             'minimum': 0
4949           },
4950           'supported_on': ['chrome_os:26-'],
4951           'features': {
4952             'dynamic_refresh': True,
4953             'per_profile': False,
4954           },
4955           'deprecated': True,
4956           'example_value': 480000,
4957           'id': 173,
4958           'caption': '''Screen off delay when running on AC power''',
4959           'desc': '''Specifies the length of time without user input after which the screen is turned off when running on AC power.
4961           When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> turns off the screen.
4963           When this policy is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> does not turn off the screen when the user becomes idle.
4965           When this policy is unset, a default length of time is used.
4967           The policy value should be specified in milliseconds. Values are clamped to be less than or equal the idle delay.''',
4968         },
4969         {
4970           'name': 'ScreenLockDelayAC',
4971           'type': 'int',
4972           'schema': {
4973             'type': 'integer',
4974             'minimum': 0
4975           },
4976           'supported_on': ['chrome_os:26-'],
4977           'features': {
4978             'dynamic_refresh': True,
4979             'per_profile': False,
4980           },
4981           'deprecated': True,
4982           'example_value': 600000,
4983           'id': 174,
4984           'caption': '''Screen lock delay when running on AC power''',
4985           'desc': '''Specifies the length of time without user input after which the screen is locked when running on AC power.
4987           When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> locks the screen.
4989           When this policy is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> does not lock the screen when the user becomes idle.
4991           When this policy is unset, a default length of time is used.
4993           The recommended way to lock the screen on idle is to enable screen locking on suspend and have <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> suspend after the idle delay. This policy should only be used when screen locking should occur a significant amount of time sooner than suspend or when suspend on idle is not desired at all.
4995           The policy value should be specified in milliseconds. Values are clamped to be less than the idle delay.''',
4996         },
4997         {
4998           'name': 'IdleWarningDelayAC',
4999           'type': 'int',
5000           'schema': {
5001             'type': 'integer',
5002             'minimum': 0
5003           },
5004           'supported_on': ['chrome_os:27-'],
5005           'features': {
5006             'dynamic_refresh': True,
5007             'per_profile': False,
5008           },
5009           'deprecated': True,
5010           'example_value': 545000,
5011           'id': 197,
5012           'caption': '''Idle warning delay when running on AC power''',
5013           'desc': '''Specifies the length of time without user input after which a warning dialog is shown when running on AC power.
5015           When this policy is set, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> shows a warning dialog telling the user that the idle action is about to be taken.
5017           When this policy is unset, no warning dialog is shown.
5019           The policy value should be specified in milliseconds. Values are clamped to be less than or equal the idle delay.''',
5020         },
5021         {
5022           'name': 'IdleDelayAC',
5023           'type': 'int',
5024           'schema': {
5025             'type': 'integer',
5026             'minimum': 0
5027           },
5028           'supported_on': ['chrome_os:26-'],
5029           'features': {
5030             'dynamic_refresh': True,
5031             'per_profile': False,
5032           },
5033           'deprecated': True,
5034           'example_value': 1800000,
5035           'id': 175,
5036           'caption': '''Idle delay when running on AC power''',
5037           'desc': '''Specifies the length of time without user input after which the idle action is taken when running on AC power.
5039           When this policy is set, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> takes the idle action, which can be configured separately.
5041           When this policy is unset, a default length of time is used.
5043           The policy value should be specified in milliseconds.''',
5044         },
5045         {
5046           'name': 'ScreenDimDelayBattery',
5047           'type': 'int',
5048           'schema': {
5049             'type': 'integer',
5050             'minimum': 0
5051           },
5052           'supported_on': ['chrome_os:26-'],
5053           'features': {
5054             'dynamic_refresh': True,
5055             'per_profile': False,
5056           },
5057           'deprecated': True,
5058           'example_value': 300000,
5059           'id': 176,
5060           'caption': '''Screen dim delay when running on battery power''',
5061           'desc': '''Specifies the length of time without user input after which the screen is dimmed when running on battery power.
5063           When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> dims the screen.
5065           When this policy is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> does not dim the screen when the user becomes idle.
5067           When this policy is unset, a default length of time is used.
5069           The policy value should be specified in milliseconds. Values are clamped to be less than or equal the screen off delay (if set) and the idle delay.''',
5070         },
5071         {
5072           'name': 'ScreenOffDelayBattery',
5073           'type': 'int',
5074           'schema': {
5075             'type': 'integer',
5076             'minimum': 0
5077           },
5078           'supported_on': ['chrome_os:26-'],
5079           'features': {
5080             'dynamic_refresh': True,
5081             'per_profile': False,
5082           },
5083           'deprecated': True,
5084           'example_value': 360000,
5085           'id': 177,
5086           'caption': '''Screen off delay when running on battery power''',
5087           'desc': '''Specifies the length of time without user input after which the screen is turned off when running on battery power.
5089           When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> turns off the screen.
5091           When this policy is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> does not turn off the screen when the user becomes idle.
5093           When this policy is unset, a default length of time is used.
5095           The policy value should be specified in milliseconds. Values are clamped to be less than or equal the idle delay.''',
5096         },
5097         {
5098           'name': 'ScreenLockDelayBattery',
5099           'type': 'int',
5100           'schema': {
5101             'type': 'integer',
5102             'minimum': 0
5103           },
5104           'supported_on': ['chrome_os:26-'],
5105           'features': {
5106             'dynamic_refresh': True,
5107             'per_profile': False,
5108           },
5109           'deprecated': True,
5110           'example_value': 600000,
5111           'id': 178,
5112           'caption': '''Screen lock delay when running on battery power''',
5113           'desc': '''Specifies the length of time without user input after which the screen is locked when running on battery power.
5115           When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> locks the screen.
5117           When this policy is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> does not lock the screen when the user becomes idle.
5119           When this policy is unset, a default length of time is used.
5121           The recommended way to lock the screen on idle is to enable screen locking on suspend and have <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> suspend after the idle delay. This policy should only be used when screen locking should occur a significant amount of time sooner than suspend or when suspend on idle is not desired at all.
5123           The policy value should be specified in milliseconds. Values are clamped to be less than the idle delay.''',
5124         },
5125         {
5126           'name': 'IdleWarningDelayBattery',
5127           'type': 'int',
5128           'schema': {
5129             'type': 'integer',
5130             'minimum': 0
5131           },
5132           'supported_on': ['chrome_os:27-'],
5133           'features': {
5134             'dynamic_refresh': True,
5135             'per_profile': False,
5136           },
5137           'deprecated': True,
5138           'example_value': 545000,
5139           'id': 198,
5140           'caption': '''Idle warning delay when running on battery power''',
5141           'desc': '''Specifies the length of time without user input after which a warning dialog is shown when running on battery power.
5143           When this policy is set, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> shows a warning dialog telling the user that the idle action is about to be taken.
5145           When this policy is unset, no warning dialog is shown.
5147           The policy value should be specified in milliseconds. Values are clamped to be less than or equal the idle delay.''',
5148         },
5149         {
5150           'name': 'IdleDelayBattery',
5151           'type': 'int',
5152           'schema': {
5153             'type': 'integer',
5154             'minimum': 0
5155           },
5156           'supported_on': ['chrome_os:26-'],
5157           'features': {
5158             'dynamic_refresh': True,
5159             'per_profile': False,
5160           },
5161           'deprecated': True,
5162           'example_value': 600000,
5163           'id': 179,
5164           'caption': '''Idle delay when running on battery power''',
5165           'desc': '''Specifies the length of time without user input after which the idle action is taken when running on battery power.
5167           When this policy is set, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> takes the idle action, which can be configured separately.
5169           When this policy is unset, a default length of time is used.
5171           The policy value should be specified in milliseconds.''',
5172         },
5173         {
5174           'name': 'IdleAction',
5175           'type': 'int-enum',
5176           'schema': {
5177             'type': 'integer',
5178             'enum': [ 0, 1, 2, 3 ],
5179           },
5180           'items': [
5181             {
5182               'name': 'IdleActionSuspend',
5183               'value': 0,
5184               'caption': '''Suspend''',
5185             },
5186             {
5187               'name': 'IdleActionLogout',
5188               'value': 1,
5189               'caption': '''Log the user out''',
5190             },
5191             {
5192               'name': 'IdleActionShutdown',
5193               'value': 2,
5194               'caption': '''Shut down''',
5195             },
5196             {
5197               'name': 'IdleActionDoNothing',
5198               'value': 3,
5199               'caption': '''Do nothing''',
5200             },
5201           ],
5202           'supported_on': ['chrome_os:26-'],
5203           'features': {
5204             'dynamic_refresh': True,
5205             'per_profile': False,
5206           },
5207           'deprecated': True,
5208           'example_value': 0,
5209           'id': 180,
5210           'caption': '''Action to take when the idle delay is reached''',
5211           'desc': '''Specify the action to take when the idle delay is reached.
5213           Note that this policy is deprecated and will be removed in the future.
5215           This policy provides a fallback value for the more-specific <ph name="IDLEACTIONAC_POLICY_NAME">IdleActionAC</ph> and <ph name="IDLEACTIONBATTERY_POLICY_NAME">IdleActionBattery</ph> policies. If this policy is set, its value gets used if the respective more-specific policy is not set.
5217           When this policy is unset, behavior of the more-specific policies remains unaffected.''',
5218         },
5219         {
5220           'name': 'IdleActionAC',
5221           'type': 'int-enum',
5222           'schema': {
5223             'type': 'integer',
5224             'enum': [ 0, 1, 2, 3 ],
5225           },
5226           'items': [
5227             {
5228               'name': 'IdleActionSuspend',
5229               'value': 0,
5230               'caption': '''Suspend''',
5231             },
5232             {
5233               'name': 'IdleActionLogout',
5234               'value': 1,
5235               'caption': '''Log the user out''',
5236             },
5237             {
5238               'name': 'IdleActionShutdown',
5239               'value': 2,
5240               'caption': '''Shut down''',
5241             },
5242             {
5243               'name': 'IdleActionDoNothing',
5244               'value': 3,
5245               'caption': '''Do nothing''',
5246             },
5247           ],
5248           'supported_on': ['chrome_os:30-'],
5249           'features': {
5250             'dynamic_refresh': True,
5251             'per_profile': False,
5252           },
5253           'deprecated': True,
5254           'example_value': 0,
5255           'id': 226,
5256           'caption': '''Action to take when the idle delay is reached while running on AC power''',
5257           'desc': '''Specify the action to take when the idle delay is reached while running on AC power.
5259           When this policy is set, it specifies the action that <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> takes when the user remains idle for the length of time given by the idle delay, which can be configured separately.
5261           When this policy is unset, the default action is taken, which is suspend.
5263           If the action is suspend, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can separately be configured to either lock or not lock the screen before suspending.''',
5264         },
5265         {
5266           'name': 'IdleActionBattery',
5267           'type': 'int-enum',
5268           'schema': {
5269             'type': 'integer',
5270             'enum': [ 0, 1, 2, 3 ],
5271           },
5272           'items': [
5273             {
5274               'name': 'IdleActionSuspend',
5275               'value': 0,
5276               'caption': '''Suspend''',
5277             },
5278             {
5279               'name': 'IdleActionLogout',
5280               'value': 1,
5281               'caption': '''Log the user out''',
5282             },
5283             {
5284               'name': 'IdleActionShutdown',
5285               'value': 2,
5286               'caption': '''Shut down''',
5287             },
5288             {
5289               'name': 'IdleActionDoNothing',
5290               'value': 3,
5291               'caption': '''Do nothing''',
5292             },
5293           ],
5294           'supported_on': ['chrome_os:30-'],
5295           'features': {
5296             'dynamic_refresh': True,
5297             'per_profile': False,
5298           },
5299           'deprecated': True,
5300           'example_value': 0,
5301           'id': 222,
5302           'caption': '''Action to take when the idle delay is reached while running on battery power''',
5303           'desc': '''Specify the action to take when the idle delay is reached while running on battery power.
5305           When this policy is set, it specifies the action that <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> takes when the user remains idle for the length of time given by the idle delay, which can be configured separately.
5307           When this policy is unset, the default action is taken, which is suspend.
5309           If the action is suspend, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can separately be configured to either lock or not lock the screen before suspending.''',
5310         },
5311         {
5312           'name': 'LidCloseAction',
5313           'type': 'int-enum',
5314           'schema': {
5315             'type': 'integer',
5316             'enum': [ 0, 1, 2, 3 ],
5317           },
5318           'items': [
5319             {
5320               'name': 'LidCloseActionSuspend',
5321               'value': 0,
5322               'caption': '''Suspend''',
5323             },
5324             {
5325               'name': 'LidCloseActionLogout',
5326               'value': 1,
5327               'caption': '''Log the user out''',
5328             },
5329             {
5330               'name': 'LidCloseActionShutdown',
5331               'value': 2,
5332               'caption': '''Shut down''',
5333             },
5334             {
5335               'name': 'LidCloseActionDoNothing',
5336               'value': 3,
5337               'caption': '''Do nothing''',
5338             },
5339           ],
5340           'supported_on': ['chrome_os:26-'],
5341           'features': {
5342             'dynamic_refresh': True,
5343             'per_profile': False,
5344           },
5345           'example_value': 0,
5346           'id': 181,
5347           'caption': '''Action to take when the user closes the lid''',
5348           'desc': '''Specify the action to take when the user closes the lid.
5350           When this policy is set, it specifies the action that <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> takes when the user closes the device's lid.
5352           When this policy is unset, the default action is taken, which is suspend.
5354           If the action is suspend, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can separately be configured to either lock or not lock the screen before suspending.''',
5355         },
5356         {
5357           'name': 'PowerManagementUsesAudioActivity',
5358           'type': 'main',
5359           'schema': { 'type': 'boolean' },
5360           'supported_on': ['chrome_os:26-'],
5361           'features': {
5362             'dynamic_refresh': True,
5363             'per_profile': False,
5364           },
5365           'example_value': True,
5366           'id': 182,
5367           'caption': '''Specify whether audio activity affects power management''',
5368           'desc': '''Specifies whether audio activity affects power management.
5370           If this policy is set to True or is unset, the user is not considered to be idle while audio is playing. This prevents the idle timeout from being reached and the idle action from being taken. However, screen dimming, screen off and screen lock will be performed after the configured timeouts, irrespective of audio activity.
5372           If this policy is set to False, audio activity does not prevent the user from being considered idle.''',
5373         },
5374         {
5375           'name': 'PowerManagementUsesVideoActivity',
5376           'type': 'main',
5377           'schema': { 'type': 'boolean' },
5378           'supported_on': ['chrome_os:26-'],
5379           'features': {
5380             'dynamic_refresh': True,
5381             'per_profile': False,
5382           },
5383           'example_value': True,
5384           'id': 183,
5385           'caption': '''Specify whether video activity affects power management''',
5386           'desc': '''Specifies whether video activity affects power management.
5388           If this policy is set to True or is unset, the user is not considered to be idle while video is playing. This prevents the idle delay, screen dim delay, screen off delay and screen lock delay from being reached and the corresponding actions from being taken.
5390           If this policy is set to False, video activity does not prevent the user from being considered idle.''',
5391         },
5392         {
5393           'name': 'PresentationIdleDelayScale',
5394           'type': 'int',
5395           'schema': { 'type': 'integer' },
5396           'supported_on': ['chrome_os:26-28'],
5397           'features': {
5398             'dynamic_refresh': True,
5399             'per_profile': False,
5400           },
5401           'deprecated': True,
5402           'example_value': 200,
5403           'id': 184,
5404           'caption': '''Percentage by which to scale the idle delay in presentation mode (deprecated)''',
5405           'desc': '''This policy has been retired as of <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> version 29. Please use the PresentationScreenDimDelayScale policy instead.''',
5406         },
5407         {
5408           'name': 'PresentationScreenDimDelayScale',
5409           'type': 'int',
5410           'schema': { 'type': 'integer' },
5411           'supported_on': ['chrome_os:29-'],
5412           'features': {
5413             'dynamic_refresh': True,
5414             'per_profile': False,
5415           },
5416           'example_value': 200,
5417           'id': 220,
5418           'caption': '''Percentage by which to scale the screen dim delay in presentation mode''',
5419           'desc': '''Specifies the percentage by which the screen dim delay is scaled when the device is in presentation mode.
5421           If this policy is set, it specifies the percentage by which the screen dim delay is scaled when the device is in presentation mode. When the screen dim delay is scaled, the screen off, screen lock and idle delays get adjusted to maintain the same distances from the screen dim delay as originally configured.
5423           If this policy is unset, a default scale factor is used.
5425           The scale factor must be 100% or more. Values that would make the screen dim delay in presentation mode shorter than the regular screen dim delay are not allowed.''',
5426         },
5427         {
5428           'name': 'AllowScreenWakeLocks',
5429           'type': 'main',
5430           'schema': { 'type': 'boolean' },
5431           'supported_on': ['chrome_os:28-'],
5432           'features': {
5433             'dynamic_refresh': True,
5434             'per_profile': False,
5435           },
5436           'example_value': False,
5437           'id': 203,
5438           'caption': '''Allow screen wake locks''',
5439           'desc': '''Specifies whether screen wake locks are allowed. Screen wake locks can be requested by extensions via the power management extension API.
5441           If this policy is set to true or left not set, screen wake locks will be honored for power management.
5443           If this policy is set to false, screen wake lock requests will get ignored.''',
5444         },
5445         {
5446           'name': 'UserActivityScreenDimDelayScale',
5447           'type': 'int',
5448           'schema': { 'type': 'integer' },
5449           'supported_on': ['chrome_os:29-'],
5450           'features': {
5451             'dynamic_refresh': True,
5452             'per_profile': False,
5453           },
5454           'example_value': 200,
5455           'id': 210,
5456           'caption': '''Percentage by which to scale the screen dim delay if the user becomes active after dimming''',
5457           'desc': '''Specifies the percentage by which the screen dim delay is scaled when user activity is observed while the screen is dimmed or soon after the screen has been turned off.
5459           If this policy is set, it specifies the percentage by which the screen dim delay is scaled when user activity is observed while the screen is dimmed or soon after the screen has been turned off. When the dim delay is scaled, the screen off, screen lock and idle delays get adjusted to maintain the same distances from the screen dim delay as originally configured.
5461           If this policy is unset, a default scale factor is used.
5463           The scale factor must be 100% or more.''',
5464         },
5465         {
5466           'name': 'WaitForInitialUserActivity',
5467           'type': 'main',
5468           'schema': { 'type': 'boolean' },
5469           'supported_on': ['chrome_os:32-'],
5470           'features': {
5471             'dynamic_refresh': True,
5472             'per_profile': False,
5473           },
5474           'example_value': True,
5475           'id': 247,
5476           'caption': '''Wait for initial user activity''',
5477           'desc': '''Specifies whether power management delays and the session length limit should only start running after the first user activity has been observed in a session.
5479           If this policy is set to True, power management delays and the session length limit do not start running until after the first user activity has been observed in a session.
5481           If this policy is set to False or left unset, power management delays and the session length limit start running immediately on session start.''',
5482         },
5483         {
5484           'name': 'PowerManagementIdleSettings',
5485           'type': 'dict',
5486           'schema': {
5487             'type': 'object',
5488             'properties': {
5489               'AC': {
5490                 'description': 'Delays and actions to take when the device is idle and running on AC power',
5491                 'type': 'object',
5492                 'id': 'PowerManagementDelays',
5493                 'properties': {
5494                   'Delays': {
5495                     'type': 'object',
5496                     'properties': {
5497                       'ScreenDim': {
5498                         'description': 'The length of time without user input after which the screen is dimmed, in milliseconds',
5499                         'type': 'integer',
5500                         'minimum': 0
5501                       },
5502                       'ScreenOff': {
5503                         'description': 'The length of time without user input after which the screen is turned off, in milliseconds',
5504                         'type': 'integer',
5505                         'minimum': 0
5506                       },
5507                       'IdleWarning': {
5508                         'description': 'The length of time without user input after which a warning dialog is shown, in milliseconds',
5509                         'type': 'integer',
5510                         'minimum': 0
5511                       },
5512                       'Idle': {
5513                         'description': 'The length of time without user input after which the idle action is taken, in milliseconds',
5514                         'type': 'integer',
5515                         'minimum': 0
5516                       }
5517                     }
5518                   },
5519                   'IdleAction': {
5520                     'description': 'Action to take when the idle delay is reached',
5521                     'type': 'string',
5522                     'enum': [ 'Suspend', 'Logout', 'Shutdown', 'DoNothing' ]
5523                   }
5524                 }
5525               },
5526               'Battery': {
5527                 'description': 'Delays and actions to take when the device is idle and running on battery',
5528                 '$ref': 'PowerManagementDelays'
5529               }
5530             }
5531           },
5532           'supported_on': ['chrome_os:35-'],
5533           'features': {
5534             'dynamic_refresh': True,
5535             'per_profile': False,
5536           },
5537           'example_value': {
5538             'AC': {
5539               'IdleAction': 'DoNothing'
5540             },
5541             'Battery': {
5542               'IdleAction': 'DoNothing'
5543             }
5544           },
5545           'id': 258,
5546           'caption': '''Power management settings when the user becomes idle''',
5547           'desc': '''Configure power management settings when the user becomes idle.
5549           This policy controls multiple settings for the power management strategy when the user becomes idle.
5551           There are four types of action:
5552           * The screen will be dimmed if the user remains idle for the time specified by |ScreenDim|.
5553           * The screen will be turned off if the user remains idle for the time specified by |ScreenOff|.
5554           * A warning dialog will be shown if the user remains idle for the time specified by |IdleWarning|, telling the user that the idle action is about to be taken.
5555           * The action specified by |IdleAction| will be taken if the user remains idle for the time specified by |Idle|.
5557           For each of above actions, the delay should be specified in milliseconds, and needs to be set to a value greater than zero to trigger the corresponding action. In case the delay is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will not take the corresponding action.
5559           For each of the above delays, when the length of time is unset, a default value will be used.
5561           Note that |ScreenDim| values will be clamped to be less than or equal to |ScreenOff|, |ScreenOff| and |IdleWarning| will be clamped to be less than or equal to |Idle|.
5563           |IdleAction| can be one of four possible actions:
5564           * |Suspend|
5565           * |Logout|
5566           * |Shutdown|
5567           * |DoNothing|
5569           When the |IdleAction| is unset, the default action is taken, which is suspend.
5571           There are also separate settings for AC power and battery.
5572           '''
5573         },
5574         {
5575           'name': 'ScreenLockDelays',
5576           'type': 'dict',
5577           'schema': {
5578             'type': 'object',
5579             'properties': {
5580               'AC': {
5581                 'description': 'The length of time without user input after which the screen is locked when running on AC power, in milliseconds',
5582                 'type': 'integer',
5583                 'minimum': 0
5584               },
5585               'Battery': {
5586                 'description': 'The length of time without user input after which the screen is locked when running on battery, in milliseconds',
5587                 'type': 'integer',
5588                 'minimum': 0
5589               }
5590             }
5591           },
5592           'supported_on': ['chrome_os:35-'],
5593           'features': {
5594             'dynamic_refresh': True,
5595             'per_profile': False,
5596           },
5597           'example_value': {
5598             'AC': 600000,
5599             'Battery': 300000
5600           },
5601           'id': 259,
5602           'caption': '''Screen lock delays''',
5603           'desc': '''Specifies the length of time without user input after which the screen is locked when running on AC power or battery.
5605           When the length of time is set to a value greater than zero, it represents the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> locks the screen.
5607           When the length of time is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> does not lock the screen when the user becomes idle.
5609           When the length of time is unset, a default length of time is used.
5611           The recommended way to lock the screen on idle is to enable screen locking on suspend and have <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> suspend after the idle delay. This policy should only be used when screen locking should occur a significant amount of time sooner than suspend or when suspend on idle is not desired at all.
5613           The policy value should be specified in milliseconds. Values are clamped to be less than the idle delay.''',
5614         },
5615       ],
5616     },
5617     {
5618       'name': 'DeviceLoginScreenPowerManagement',
5619       'type': 'dict',
5620       'schema': {
5621         'type': 'object',
5622         'properties': {
5623           'AC': {
5624             'description': 'Power management settings applicable only when running on AC power',
5625             'type': 'object',
5626             'id': 'DeviceLoginScreenPowerSettings',
5627             'properties': {
5628               'Delays': {
5629                 'type': 'object',
5630                 'properties': {
5631                   'ScreenDim': {
5632                     'description': 'The length of time without user input after which the screen is dimmed, in milliseconds',
5633                     'type': 'integer',
5634                     'minimum': 0
5635                   },
5636                   'ScreenOff': {
5637                     'description': 'The length of time without user input after which the screen is turned off, in milliseconds',
5638                     'type': 'integer',
5639                     'minimum': 0
5640                   },
5641                   'Idle': {
5642                     'description': 'The length of time without user input after which the idle action is taken, in milliseconds',
5643                     'type': 'integer',
5644                     'minimum': 0
5645                   }
5646                 }
5647               },
5648               'IdleAction': {
5649                 'description': 'Action to take when the idle delay is reached',
5650                 'type': 'string',
5651                 'enum': [ 'Suspend', 'Shutdown', 'DoNothing' ]
5652               }
5653             }
5654           },
5655           'Battery': {
5656             'description': 'Power management settings applicable only when running on battery power',
5657             '$ref': 'DeviceLoginScreenPowerSettings'
5658           },
5659           'LidCloseAction': {
5660             'description': 'Action to take when the lid is closed',
5661             'type': 'string',
5662             'enum': [ 'Suspend', 'Shutdown', 'DoNothing' ]
5663           },
5664           'UserActivityScreenDimDelayScale': {
5665             'description': 'Percentage by which the screen dim delay is scaled when user activity is observed while the screen is dimmed or soon after the screen has been turned off',
5666             'type': 'integer',
5667             'minimum': 100
5668           }
5669         }
5670       },
5671       'supported_on': ['chrome_os:30-'],
5672       'device_only': True,
5673       'features': {
5674         'dynamic_refresh': True,
5675       },
5676       'example_value': {
5677         'AC': {
5678           'IdleAction': 'DoNothing'
5679         },
5680         'Battery': {
5681           'IdleAction': 'DoNothing'
5682         }
5683       },
5684       'id': 225,
5685       'caption': '''Power management on the login screen''',
5686       'desc': '''Configure power management on the login screen in <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph>.
5688       This policy lets you configure how <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> behaves when there is no user activity for some amount of time while the login screen is being shown. The policy controls multiple settings. For their individual semantics and value ranges, see the corresponding policies that control power management within a session. The only deviations from these policies are:
5689       * The actions to take on idle or lid close cannot be to end the session.
5690       * The default action taken on idle when running on AC power is to shut down.
5692       If a setting is left unspecified, a default value is used.
5694       If this policy is unset, defaults are used for all settings.''',
5695     },
5696     {
5697       'name': 'DeviceAllowRedeemChromeOsRegistrationOffers',
5698       'type': 'main',
5699       'schema': { 'type': 'boolean' },
5700       'supported_on': ['chrome_os:26-'],
5701       'device_only': True,
5702       'features': {
5703         'dynamic_refresh': True,
5704       },
5705       'example_value': True,
5706       'id': 185,
5707       'caption': '''Allow users to redeem offers through Chrome OS Registration''',
5708       'desc': '''IT admins for enterprise devices can use this flag to control whether to allow users to redeem offers through Chrome OS Registration.
5710       If this policy is set to true or left not set, users will be able to redeem offers through Chrome OS Registration.
5712       If this policy is set to false, user will not be able to redeem offers.''',
5713     },
5714     {
5715       'name': 'TermsOfServiceURL',
5716       'type': 'string',
5717       'schema': { 'type': 'string' },
5718       'supported_on': ['chrome_os:26-'],
5719       'features': {
5720         'dynamic_refresh': True,
5721         'per_profile': False,
5722       },
5723       'example_value': 'http://www.example.com/terms_of_service.txt',
5724       'id': 186,
5725       'caption': '''Set the Terms of Service for a device-local account''',
5726       'desc': '''Sets the Terms of Service that the user must accept before starting a device-local account session.
5728       If this policy is set, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will download the Terms of Service and present them to the user whenever a device-local account session is starting. The user will only be allowed into the session after accepting the Terms of Service.
5730       If this policy is not set, no Terms of Service are shown.
5732       The policy should be set to a URL from which <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can download the Terms of Service. The Terms of Service must be plain text, served as MIME type text/plain. No markup is allowed.''',
5733     },
5734     {
5735       'name': 'Accessibility',
5736       'type': 'group',
5737       'caption': '''Accessibility settings''',
5738       'desc': '''Configure <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> accessibility features.''',
5739       'policies': [
5740         {
5741           'name': 'ShowAccessibilityOptionsInSystemTrayMenu',
5742           'type': 'main',
5743           'schema': { 'type': 'boolean' },
5744           'supported_on': ['chrome_os:27-'],
5745           'features': {
5746             'can_be_recommended': True,
5747             'dynamic_refresh': True,
5748             'per_profile': True,
5749           },
5750           'example_value': True,
5751           'id': 188,
5752           'caption': '''Show accessibility options in system tray menu''',
5753           'desc': '''Show <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> accessibility options in the system menu.
5755           If this policy is set to true, Accessibility options always appear in system tray menu.
5757           If this policy is set to false, Accessibility options never appear in system tray menu.
5759           If you set this policy, users cannot change or override it.
5761           If this policy is left unset, Accessibility options will not appear in the system tray menu, but the user can cause the Accessibility options to appear via the Settings page.'''
5762         },
5763         {
5764           'name': 'LargeCursorEnabled',
5765           'type': 'main',
5766           'schema': { 'type': 'boolean' },
5767           'supported_on': ['chrome_os:29-'],
5768           'features': {
5769             'can_be_recommended': True,
5770             'dynamic_refresh': True,
5771             'per_profile': True,
5772           },
5773           'example_value': True,
5774           'id': 211,
5775           'caption': '''Enable large cursor''',
5776           'desc': '''Enable the large cursor accessibility feature.
5778           If this policy is set to true, the large cursor will always be enabled.
5780           If this policy is set to false, the large cursor will always be disabled.
5782           If you set this policy, users cannot change or override it.
5784           If this policy is left unset, the large cursor is disabled initially but can be enabled by the user anytime.'''
5785         },
5786         {
5787           'name': 'SpokenFeedbackEnabled',
5788           'type': 'main',
5789           'schema': { 'type': 'boolean' },
5790           'supported_on': ['chrome_os:29-'],
5791           'features': {
5792             'can_be_recommended': True,
5793             'dynamic_refresh': True,
5794             'per_profile': True,
5795           },
5796           'example_value': True,
5797           'id': 212,
5798           'caption': '''Enable spoken feedback''',
5799           'desc': '''Enable the spoken feedback accessibility feature.
5801           If this policy is set to true, spoken feedback will always be enabled.
5803           If this policy is set to false, spoken feedback will always be disabled.
5805           If you set this policy, users cannot change or override it.
5807           If this policy is left unset, spoken feedback is disabled initially but can be enabled by the user anytime.'''
5808         },
5809         {
5810           'name': 'HighContrastEnabled',
5811           'type': 'main',
5812           'schema': { 'type': 'boolean' },
5813           'supported_on': ['chrome_os:29-'],
5814           'features': {
5815             'can_be_recommended': True,
5816             'dynamic_refresh': True,
5817             'per_profile': True,
5818           },
5819           'example_value': True,
5820           'id': 213,
5821           'caption': '''Enable high contrast mode''',
5822           'desc': '''Enable the high contrast mode accessibility feature.
5824           If this policy is set to true, high contrast mode will always be enabled.
5826           If this policy is set to false, high contrast mode will always be disabled.
5828           If you set this policy, users cannot change or override it.
5830           If this policy is left unset, high contrast mode is disabled initially but can be enabled by the user anytime.'''
5831         },
5832         {
5833           'name': 'VirtualKeyboardEnabled',
5834           'type': 'main',
5835           'schema': { 'type': 'boolean' },
5836           'supported_on': ['chrome_os:34-'],
5837           'features': {
5838             'can_be_recommended': True,
5839             'dynamic_refresh': True,
5840             'per_profile': True,
5841           },
5842           'example_value': True,
5843           'id': 255,
5844           'caption': '''Enable on-screen keyboard''',
5845           'desc': '''Enable the on-screen keyboard accessibility feature.
5847           If this policy is set to true, the on-screen keyboard will always be enabled.
5849           If this policy is set to false, the on-screen keyboard will always be disabled.
5851           If you set this policy, users cannot change or override it.
5853           If this policy is left unset, the on-screen keyboard is disabled initially but can be enabled by the user anytime.'''
5854         },
5855         {
5856           'name': 'KeyboardDefaultToFunctionKeys',
5857           'type': 'main',
5858           'schema': { 'type': 'boolean' },
5859           'supported_on': ['chrome_os:35-'],
5860           'features': {
5861             'can_be_recommended': True,
5862             'dynamic_refresh': True,
5863             'per_profile': True,
5864           },
5865           'example_value': True,
5866           'id': 260,
5867           'caption': '''Media keys default to function keys''',
5868           'desc': '''Changes the default behaviour of the top row keys to function keys.
5870           If this policy is set to true, the keyboard's top row of keys will produce function key commands per default. The search key has to be pressed to revert their behavior back to media keys.
5872           If this policy is set to false or left unset, the keyboard will produce media key commands per default and function key commands when the search key is held.'''
5873         },
5874         {
5875           'name': 'ScreenMagnifierType',
5876           'type': 'int-enum',
5877           'schema': {
5878             'type': 'integer',
5879             'enum': [ 0, 1 ],
5880           },
5881           'items': [
5882             {
5883               'name': 'None',
5884               'value': 0,
5885               'caption': '''Screen magnifier disabled''',
5886             },
5887             {
5888               'name': 'Full-screen',
5889               'value': 1,
5890               'caption': '''Full-screen magnifier enabled''',
5891             },
5892           ],
5893           'supported_on': ['chrome_os:29-'],
5894           'features': {
5895             'can_be_recommended': True,
5896             'dynamic_refresh': True,
5897             'per_profile': True,
5898           },
5899           'example_value': 1,
5900           'id': 214,
5901           'caption': '''Set screen magnifier type''',
5902           'desc': '''Set the type of screen magnifier that is enabled.
5904           If this policy is set, it controls the type of screen magnifier that is enabled. Setting the policy to "None" disables the screen magnifier.
5906           If you set this policy, users cannot change or override it.
5908           If this policy is left unset, the screen magnifier is disabled initially but can be enabled by the user anytime.''',
5909         },
5910         {
5911           'name': 'DeviceLoginScreenDefaultLargeCursorEnabled',
5912           'type': 'main',
5913           'schema': { 'type': 'boolean' },
5914           'supported_on': ['chrome_os:29-'],
5915           'device_only': True,
5916           'features': {
5917             'dynamic_refresh': True,
5918           },
5919           'example_value': True,
5920           'id': 215,
5921           'caption': '''Set default state of the large cursor on the login screen''',
5922           'desc': '''Set the default state of the large cursor accessibility feature on the login screen.
5924           If this policy is set to true, the large cursor will be enabled when the login screen is shown.
5926           If this policy is set to false, the large cursor will be disabled when the login screen is shown.
5928           If you set this policy, users can temporarily override it by enabling or disabling the large cursor. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
5930           If this policy is left unset, the large cursor is disabled when the login screen is first shown. Users can enable or disable the large cursor anytime and its status on the login screen is persisted between users.''',
5931         },
5932         {
5933           'name': 'DeviceLoginScreenDefaultSpokenFeedbackEnabled',
5934           'type': 'main',
5935           'schema': { 'type': 'boolean' },
5936           'supported_on': ['chrome_os:29-'],
5937           'device_only': True,
5938           'features': {
5939             'dynamic_refresh': True,
5940           },
5941           'example_value': True,
5942           'id': 216,
5943           'caption': '''Set the default state of spoken feedback on the login screen''',
5944           'desc': '''Set the default state of the spoken feedback accessibility feature on the login screen.
5946           If this policy is set to true, spoken feedback will be enabled when the login screen is shown.
5948           If this policy is set to false, spoken feedback will be disabled when the login screen is shown.
5950           If you set this policy, users can temporarily override it by enabling or disabling spoken feedback. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
5952           If this policy is left unset, spoken feedback is disabled when the login screen is first shown. Users can enable or disable spoken feedback anytime and its status on the login screen is persisted between users.''',
5953         },
5954         {
5955           'name': 'DeviceLoginScreenDefaultHighContrastEnabled',
5956           'type': 'main',
5957           'schema': { 'type': 'boolean' },
5958           'supported_on': ['chrome_os:29-'],
5959           'device_only': True,
5960           'features': {
5961             'dynamic_refresh': True,
5962           },
5963           'example_value': True,
5964           'id': 217,
5965           'caption': '''Set the default state of high contrast mode on the login screen''',
5966           'desc': '''Set the default state of the high contrast mode accessibility feature on the login screen.
5968           If this policy is set to true, high contrast mode will be enabled when the login screen is shown.
5970           If this policy is set to false, high contrast mode will be disabled when the login screen is shown.
5972           If you set this policy, users can temporarily override it by enabling or disabling high contrast mode. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
5974           If this policy is left unset, high contrast mode is disabled when the login screen is first shown. Users can enable or disable high contrast mode anytime and its status on the login screen is persisted between users.''',
5975         },
5976         {
5977           'name': 'DeviceLoginScreenDefaultVirtualKeyboardEnabled',
5978           'type': 'main',
5979           'schema': { 'type': 'boolean' },
5980           'supported_on': ['chrome_os:34-'],
5981           'device_only': True,
5982           'features': {
5983             'dynamic_refresh': True,
5984           },
5985           'example_value': True,
5986           'id': 256,
5987           'caption': '''Set default state of the on-screen keyboard on the login screen''',
5988           'desc': '''Set the default state of the on-screen keyboard accessibility feature on the login screen.
5990           If this policy is set to true, the on-screen keyboard will be enabled when the login screen is shown.
5992           If this policy is set to false, the on-screen keyboard will be disabled when the login screen is shown.
5994           If you set this policy, users can temporarily override it by enabling or disabling the on-screen keyboard. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
5996           If this policy is left unset, the on-screen keyboard is disabled when the login screen is first shown. Users can enable or disable the on-screen keyboard anytime and its status on the login screen is persisted between users.''',
5997         },
5998         {
5999           'name': 'DeviceLoginScreenDefaultScreenMagnifierType',
6000           'type': 'int-enum',
6001           'schema': {
6002             'type': 'integer',
6003             'enum': [ 0, 1 ],
6004           },
6005           'items': [
6006             {
6007               'name': 'None',
6008               'value': 0,
6009               'caption': '''Screen magnifier disabled''',
6010             },
6011             {
6012               'name': 'Full-screen',
6013               'value': 1,
6014               'caption': '''Full-screen magnifier enabled''',
6015             },
6016           ],
6017           'supported_on': ['chrome_os:29-'],
6018           'device_only': True,
6019           'features': {
6020             'dynamic_refresh': True,
6021           },
6022           'example_value': 1,
6023           'id': 218,
6024           'caption': '''Set the default screen magnifier type enabled on the login screen''',
6025           'desc': '''Set the default type of screen magnifier that is enabled on the login screen.
6027           If this policy is set, it controls the type of screen magnifier that is enabled when the login screen is shown. Setting the policy to "None" disables the screen magnifier.
6029           If you set this policy, users can temporarily override it by enabling or disabling the screen magnifier. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
6031           If this policy is left unset, the screen magnifier is disabled when the login screen is first shown. Users can enable or disable the screen magnifier anytime and its status on the login screen is persisted between users.''',
6032         },
6033       ],
6034     },
6035     {
6036       'name': 'HideWebStoreIcon',
6037       'type': 'main',
6038       'schema': { 'type': 'boolean' },
6039       'supported_on': ['chrome.*:26-'],
6040       'features': {
6041         'dynamic_refresh': True,
6042         'per_profile': True,
6043       },
6044       'example_value': True,
6045       'id': 189,
6046       'caption': '''Hide the web store from the New Tab Page and app launcher''',
6047       'desc': '''Hide the Chrome Web Store app and footer link from the New Tab Page and <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> app launcher.
6049       When this policy is set to true, the icons are hidden.
6051       When this policy is set to false or is not configured, the icons are visible.''',
6052     },
6053     {
6054       'name': 'DeviceStartUpFlags',
6055       'type': 'list',
6056       'schema': {
6057         'type': 'array',
6058         'items': { 'type': 'string' },
6059       },
6060       'supported_on': ['chrome_os:27-'],
6061       'device_only': True,
6062       'features': {
6063         'dynamic_refresh': False,
6064       },
6065       'example_value': [ "enable-managed-mode", "my-cool-flag" ],
6066       'id': 191,
6067       'caption': '''System wide flags to be applied on <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> start-up''',
6068       'desc': '''Specifies the flags that should be applied to <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> when it starts. The specified flags are applied before <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> is started even for the sign-in screen.''',
6069     },
6070     {
6071       'name': 'UptimeLimit',
6072       'type': 'int',
6073       'schema': { 'type': 'integer' },
6074       'supported_on': ['chrome_os:29-'],
6075       'device_only': True,
6076       'features': {
6077         'dynamic_refresh': True,
6078       },
6079       'example_value': 86400,
6080       'id': 192,
6081       'caption': '''Limit device uptime by automatically rebooting''',
6082       'desc': '''Limit the device uptime by scheduling automatic reboots.
6084       When this policy is set, it specifies the length of device uptime after which an automatic reboot is scheduled.
6086       When this policy is not set, the device uptime is not limited.
6088       If you set this policy, users cannot change or override it.
6090       An automatic reboot is scheduled at the selected time but may be delayed on the device by up to 24 hours if a user is currently using the device.
6092       Note: Currently, automatic reboots are only enabled while the login screen is being shown or a kiosk app session is in progress. This will change in the future and the policy will always apply, regardless of whether a session of any particular type is in progress or not.
6094       The policy value should be specified in seconds. Values are clamped to be at least 3600 (one hour).''',
6095     },
6096     {
6097       'name': 'RebootAfterUpdate',
6098       'type': 'main',
6099       'schema': { 'type': 'boolean' },
6100       'supported_on': ['chrome_os:29-'],
6101       'device_only': True,
6102       'features': {
6103         'dynamic_refresh': True,
6104       },
6105       'example_value': True,
6106       'id': 193,
6107       'caption': '''Automatically reboot after update''',
6108       'desc': '''Schedule an automatic reboot after a <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> update has been applied.
6110       When this policy is set to true, an automatic reboot is scheduled when a <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> update has been applied and a reboot is required to complete the update process. The reboot is scheduled immediately but may be delayed on the device by up to 24 hours if a user is currently using the device.
6112       When this policy is set to false, no automatic reboot is scheduled after applying a <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> update. The update process is completed when the user next reboots the device.
6114       If you set this policy, users cannot change or override it.
6116       Note: Currently, automatic reboots are only enabled while the login screen is being shown or a kiosk app session is in progress. This will change in the future and the policy will always apply, regardless of whether a session of any particular type is in progress or not.''',
6117     },
6118     {
6119       'name': 'VariationsRestrictParameter',
6120       'type': 'string',
6121       'schema': { 'type': 'string' },
6122       'supported_on': ['chrome.*:27-', 'android:34-', 'ios:35-'],
6123       'features': {
6124         'dynamic_refresh': False,
6125         'per_profile': False,
6126       },
6127       'example_value': 'restricted',
6128       'id': 196,
6129       'future': True,
6130       'caption': '''Set the restriction on the fetching of the Variations seed''',
6131       'desc': '''Add a parameter to the fetching of the Variations seed in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
6133       If specified, will add a query parameter called 'restrict' to the URL used to fetch the Variations seed. The value of the parameter will be the value specified in this policy.
6135       If not specified, will not modify the Variations seed URL.''',
6136     },
6137     {
6138       'name': 'DeviceVariationsRestrictParameter',
6139       'type': 'string',
6140       'schema': { 'type': 'string' },
6141       'supported_on': ['chrome_os:28-'],
6142       'features': {
6143         'dynamic_refresh': False,
6144       },
6145       'device_only': True,
6146       'example_value': 'restricted',
6147       'id': 199,
6148       'future': True,
6149       'caption': '''Set the restriction on the fetching of the Variations seed''',
6150       'desc': '''Add a parameter to the fetching of the Variations seed in <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph>.
6152       If specified, will add a query parameter called 'restrict' to the URL used to fetch the Variations seed. The value of the parameter will be the value specified in this policy.
6154       If not specified, will not modify the Variations seed URL.''',
6155     },
6156     {
6157       'name': 'Attestation',
6158       'type': 'group',
6159       'caption': 'Remote Attestation',
6160       'desc': 'Configure the remote attestation with TPM mechanism.',
6161       'policies': [
6162         {
6163           'name': 'AttestationEnabledForDevice',
6164           'type': 'main',
6165           'schema': { 'type': 'boolean' },
6166           'supported_on': ['chrome_os:28-'],
6167           'features': {
6168             'dynamic_refresh': True,
6169           },
6170           'device_only': True,
6171           'example_value': True,
6172           'id': 207,
6173           'caption': '''Enable remote attestation for the device''',
6174           'desc': '''If true, remote attestation is allowed for the device and a certificate will automatically be generated and uploaded to the Device Management Server.
6176           If it is set to false, or if it is not set, no certificate will be generated and calls to the enterprise.platformKeysPrivate extension API will fail.''',
6177         },
6178         {
6179           'name': 'AttestationEnabledForUser',
6180           'type': 'main',
6181           'schema': { 'type': 'boolean' },
6182           'supported_on': ['chrome_os:28-'],
6183           'features': {
6184             'dynamic_refresh': True,
6185             'per_profile': True,
6186           },
6187           'example_value': True,
6188           'id': 200,
6189           'caption': '''Enable remote attestation for the user''',
6190           'desc': '''If true, the user can use the hardware on Chrome devices to remote attest its identity to the privacy CA via the Enterprise Platform Keys API chrome.enterprise.platformKeysPrivate.challengeUserKey().
6192           If it is set to false, or if it is not set, calls to the API will fail with an error code.''',
6193         },
6194         {
6195           'name': 'AttestationExtensionWhitelist',
6196           'type': 'list',
6197           'schema': {
6198             'type': 'array',
6199             'items': { 'type': 'string' },
6200           },
6201           'supported_on': ['chrome_os:28-'],
6202           'features': {
6203             'dynamic_refresh': True,
6204             'per_profile': True,
6205           },
6206           'example_value': ['ghdilpkmfbfdnomkmaiogjhjnggaggoi'],
6207           'id': 201,
6208           'caption': '''Extensions allowed to to use the remote attestation API''',
6209           'desc': '''This policy specifies the allowed extensions to use Enterprise Platform Keys API chrome.enterprise.platformKeysPrivate.challengeUserKey() for remote attestation. Extensions must be added to this list to use the API.
6211           If an extension is not in the list, or the list is not set, the call to the API will fail with an error code.''',
6212         },
6213         {
6214           'name': 'AttestationForContentProtectionEnabled',
6215           'type': 'main',
6216           'schema': { 'type': 'boolean' },
6217           'supported_on': ['chrome_os:31-'],
6218           'features': {
6219             'dynamic_refresh': True,
6220           },
6221           'device_only': True,
6222           'example_value': True,
6223           'id': 239,
6224           'caption': '''Enable the use of remote attestation for content protection for the device''',
6225           'desc': '''Chrome OS devices can use remote attestation (Verified Access) to get a certificate issued by the Chrome OS CA that asserts the device is eligible to play protected content.  This process involves sending hardware endorsement information to the Chrome OS CA which uniquely identifies the device.
6227           If this setting is false, the device will not use remote attestation for content protection and the device may be unable to play protected content.
6229           If this setting is true, or if it is not set, remote attestation may be used for content protection.''',
6230         },
6231       ],
6232     },
6233     {
6234       'name': 'SuppressChromeFrameTurndownPrompt',
6235       'caption': '''Suppress the <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> turndown prompt''',
6236       'desc': '''Suppresses the turndown prompt that appears when a site is rendered by <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>.''',
6237       'type': 'main',
6238       'schema': { 'type': 'boolean' },
6239       'supported_on': ['chrome_frame:29-32'],
6240       'features': {
6241         'dynamic_refresh': False,
6242       },
6243       'example_value': True,
6244       'id': 221,
6245     },
6246     {
6247       'name': 'LocallyManagedUsers',
6248       'type': 'group',
6249       'caption': '''Locally managed users settings''',
6250       'desc': '''Configure settings for managed users.''',
6251       'policies': [
6252         {
6253           'name': 'ContentPackDefaultFilteringBehavior',
6254           'future': True,
6255           'deprecated': True,
6256           'type': 'int-enum',
6257           'schema': {
6258             'type': 'integer',
6259             'enum': [ 0, 1, 2 ],
6260           },
6261           'items': [
6262             {
6263               'name': 'Allow',
6264               'value': 0,
6265               'caption': '''Allow access to sites outside of content packs''',
6266             },
6267             {
6268               'name': 'Warn',
6269               'value': 1,
6270               'caption': '''Warn when visiting sites outside of content packs''',
6271             },
6272             {
6273               'name': 'Block',
6274               'value': 2,
6275               'caption': '''Block access to sites outside of content packs''',
6276             },
6277           ],
6278           'supported_on': ['chrome.*:28-', 'chrome_os:28-'],
6279           'features': {
6280             'dynamic_refresh': True,
6281             'per_profile': True
6282           },
6283           'example_value': 2,
6284           'id': 204,
6285           'caption': '''Default behavior for sites not in any content pack''',
6286           'desc': '''The default behavior for sites not in any content pack.
6288           This policy is for internal use by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> itself.''',
6289         },
6290         {
6291           'name': 'ContentPackManualBehaviorHosts',
6292           'future': True,
6293           'deprecated': True,
6294           'type': 'dict',
6295           'schema': {
6296             'type': 'object',
6297             'additionalProperties': {
6298               'type': 'boolean'
6299             }
6300           },
6301           'supported_on': ['chrome.*:28-', 'chrome_os:28-'],
6302           'features': {
6303             'dynamic_refresh': True,
6304             'per_profile': True
6305           },
6306           'example_value': {
6307             'www.example.com': True,
6308             'moose.org': False
6309           },
6310           'id': 205,
6311           'caption': '''Managed user manual exception hosts''',
6312           'desc': '''A dictionary mapping hostnames to a boolean flag specifying whether access to the host should be allowed (true) or blocked (false).
6314           This policy is for internal use by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> itself.''',
6315         },
6316         {
6317           'name': 'ContentPackManualBehaviorURLs',
6318           'future': True,
6319           'deprecated': True,
6320           'type': 'dict',
6321           'schema': {
6322             'type': 'object',
6323             'additionalProperties': {
6324               'type': 'boolean'
6325             }
6326           },
6327           'supported_on': ['chrome.*:28-', 'chrome_os:28-'],
6328           'features': {
6329             'dynamic_refresh': True,
6330             'per_profile': True
6331           },
6332           'example_value': {
6333             'https://www.example.com': True,
6334             'http://moose.org': False
6335           },
6336           'id': 206,
6337           'caption': '''Managed user manual exception URLs''',
6338           'desc': '''A dictionary mapping URLs to a boolean flag specifying whether access to the host should be allowed (true) or blocked (false).
6340           This policy is for internal use by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> itself.''',
6341         },
6342         {
6343           'name': 'SupervisedUsersEnabled',
6344           'type': 'main',
6345           'schema': { 'type': 'boolean' },
6346           'supported_on': ['chrome_os:29-'],
6347           'device_only': True,
6348           'features': {
6349             'dynamic_refresh': False,
6350           },
6351           'example_value': True,
6352           'id': 219,
6353           'caption': '''Enable supervised users''',
6354           'desc': '''If set to true, supervised users can be created and used.
6356           If set to false or not configured, supervised-user creation and login will be disabled. All existing supervised users will be hidden.
6358           NOTE: The default behavior for consumer and enterprise devices differs: on consumer devices supervised users are enabled by default, but on enterprise devices they are disabled by default.'''
6359         },
6360         {
6361           'name': 'SupervisedUserCreationEnabled',
6362           'type': 'main',
6363           'schema': { 'type': 'boolean' },
6364           'supported_on': ['chrome.*:29-'],
6365           'features': {
6366             'dynamic_refresh': True,
6367             'per_profile': True,
6368           },
6369           'example_value': True,
6370           'id': 223,
6371           'caption': '''Enable creation of supervised users''',
6372           'desc': '''If set to false, supervised-user creation by this user will be disabled. Any existing supervised users will still be available.
6374           If set to true or not configured, supervised users can be created and managed by this user.'''
6375         },
6376       ],
6377     },
6378     {
6379       'name': 'ManagedBookmarks',
6380       'type': 'dict',
6381       'schema': {
6382         'type': 'array',
6383         'items': {
6384           'type': 'object',
6385           'id': 'BookmarkType',
6386           'properties': {
6387             'name': { 'type': 'string' },
6388             'url': { 'type': 'string' },
6389             'children': {
6390               'type': 'array',
6391               'items': { '$ref': 'BookmarkType' },
6392             },
6393           },
6394         },
6395       },
6396       'supported_on': [
6397         'android:30-',
6398         'ios:35-',
6399         'chrome.*:37-',
6400         'chrome_os:37-',
6401       ],
6402       'features': {
6403         'dynamic_refresh': True,
6404         'per_profile': True,
6405       },
6406       'example_value': [
6407         {
6408           "name": "Google",
6409           "url": "google.com"
6410         }, {
6411           "name": "Youtube",
6412           "url": "youtube.com"
6413         }
6414       ],
6415       'id': 227,
6416       'caption': '''Managed Bookmarks''',
6417       'desc': '''Configures a list of managed bookmarks.
6419       The policy is a list of bookmarks, and each bookmark is a dictionary containing the bookmark "name" and target "url".
6421       A bookmark can also be configured as a folder. In that case, define the folder "name" but don't define an "url"; instead, define the folder contents as another list of bookmarks under the "children" key.
6423       These bookmarks are placed in a Managed bookmarks folder inside the Mobile bookmarks. These bookmarks can't be modified by the user.
6425       When this policy is set then the Managed bookmarks are the default folder opened when the bookmarks view is opened in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
6427       Managed bookmarks are not synced to the user account.''',
6428     },
6429     {
6430       'name': 'DataCompressionProxyEnabled',
6431       'type': 'main',
6432       'schema': { 'type': 'boolean' },
6433       'supported_on': ['android:31-'],
6434       'features': {
6435         'dynamic_refresh': True,
6436         'per_profile': True,
6437       },
6438       'example_value': True,
6439       'id': 241,
6440       'caption': '''Enable the data compression proxy feature''',
6441       'desc': '''Enable or disable the data compression proxy and prevents users from changing this setting.
6443       If you enable or disable this setting, users cannot change or override this setting.
6445       If this policy is left not set, the data compression proxy feature will be available for the user to choose whether to use it or not.''',
6446     },
6447     {
6448       'name': 'UserAvatarImage',
6449       'type': 'external',
6450       'schema': {
6451         'type': 'object',
6452         'properties': {
6453           'url': { "type": "string" },
6454           'hash': { "type": "string" }
6455         },
6456       },
6457       'supported_on': ['chrome_os:34-'],
6458       'features': {
6459         'dynamic_refresh': True,
6460         'per_profile': True,
6461       },
6462       'example_value': { "url": "http://example.com/avatar.jpg", "hash": "deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef" },
6463       'max_size': 524288,
6464       'id': 249,
6465       'caption': '''User avatar image''',
6466       'desc': '''Configure user avatar image.
6468       This policy allows you to configure the avatar image representing the user on the login screen. The policy is set by specifying the URL from which <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can download the avatar image and a cryptographic hash used to verify the integrity of the download. The image must be in JPEG format, its size must not exceed 512kB. The URL must be accessible without any authentication.
6470       The avatar image is downloaded and cached. It will be re-downloaded whenever the URL or the hash changes.
6472       The policy should be specified as a string that expresses the URL and hash in JSON format, conforming to the following schema:
6473       {
6474         "type": "object",
6475         "properties": {
6476           "url": {
6477             "description": "The URL from which the avatar image can be downloaded.",
6478             "type": "string"
6479           },
6480           "hash": {
6481             "description": "The SHA-256 hash of the avatar image.",
6482             "type": "string"
6483           }
6484         }
6485       }
6487       If this policy is set, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will download and use the avatar image.
6489       If you set this policy, users cannot change or override it.
6491       If the policy is left not set, the user can choose the avatar image representing him/her on the login screen.''',
6492     },
6493     {
6494       'name': 'WallpaperImage',
6495       'type': 'external',
6496       'schema': {
6497         'type': 'object',
6498         'properties': {
6499           'url': { "type": "string" },
6500           'hash': { "type": "string" }
6501         },
6502       },
6503       'supported_on': ['chrome_os:35-'],
6504       'features': {
6505         'dynamic_refresh': True,
6506         'per_profile': True,
6507       },
6508       'example_value': { "url": "http://example.com/wallpaper.jpg", "hash": "baddecafbaddecafbaddecafbaddecafbaddecafbaddecafbaddecafbaddecaf" },
6509       'max_size': 16777216,
6510       'id': 262,
6511       'caption': '''Wallpaper image''',
6512       'desc': '''Configure wallpaper image.
6514       This policy allows you to configure the wallpaper image that is shown on the desktop and on the login screen background for the user. The policy is set by specifying the URL from which <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can download the wallpaper image and a cryptographic hash used to verify the integrity of the download. The image must be in JPEG format, its file size must not exceed 16MB and its dimension must not exceed 32 megapixels. The URL must be accessible without any authentication.
6516       The wallpaper image is downloaded and cached. It will be re-downloaded whenever the URL or the hash changes.
6518       The policy should be specified as a string that expresses the URL and hash in JSON format, conforming to the following schema:
6519       {
6520         "type": "object",
6521         "properties": {
6522           "url": {
6523             "description": "The URL from which the wallpaper image can be downloaded.",
6524             "type": "string"
6525           },
6526           "hash": {
6527             "description": "The SHA-256 hash of the wallpaper image.",
6528             "type": "string"
6529           }
6530         }
6531       }
6533       If this policy is set, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will download and use the wallpaper image.
6535       If you set this policy, users cannot change or override it.
6537       If the policy is left not set, the user can choose an image to be shown on the desktop and on the login screen background.''',
6538     },
6539     {
6540       'name': 'EnableDeprecatedWebPlatformFeatures',
6541       'type': 'string-enum-list',
6542       'schema': {
6543         'type': 'array',
6544         'items': {
6545           'type': 'string',
6546           'enum': [
6547             'ShowModalDialog_EffectiveUntil20150430'
6548           ],
6549         },
6550       },
6551       'items': [
6552         {
6553           'name': 'ShowModalDialog',
6554           'value': 'ShowModalDialog_EffectiveUntil20150430',
6555           'caption': '''Enable ShowModalDialog API through 2015.04.30''',
6556         }
6557       ],
6558       'supported_on': ['chrome.*:37-', 'chrome_os:37-', 'android:37-'],
6559       'features': {
6560         'dynamic_refresh': True,
6561         'per_profile': True,
6562       },
6563       'example_value': ['ShowModalDialog_EffectiveUntil20150430'],
6564       'id': 270,
6565       'caption': '''Enable deprecated web platform features for a limited time''',
6566       'desc': '''Specify a list of deprecated web platform features to re-enable temporarily.
6568       This policy gives administrators the ability to re-enable deprecated web platform features for a limited time. Features are identified by a string tag and the features corresponding to the tags included in the list specified by this policy will get re-enabled.
6570       If this policy is left not set, or the list is empty or does not match one of the supported string tags, all deprecated web platform features will remain disabled.
6572       While the policy itself is supported on the above platforms, the feature it is enabling may be available on fewer platforms. Not all deprecated Web Platform features can be re-enabled. Only the ones explicitly listed below can be for a limited period of time, which is different per feature. The general format of the string tag will be [DeprecatedFeatureName]_EffectiveUntil[yyyymmdd]. As reference, you can find the intent behind the Web Platform feature changes at http://bit.ly/blinkintents.
6573       ''',
6574     },
6575     {
6576       'name': 'DeviceTransferSAMLCookies',
6577       'type': 'main',
6578       'schema': { 'type': 'boolean' },
6579       'supported_on': ['chrome_os:38-'],
6580       'device_only': True,
6581       'features': {
6582         'dynamic_refresh': True,
6583       },
6584       'example_value': True,
6585       'id': 271,
6586       'caption': '''Transfer SAML IdP cookies during login''',
6587       'desc': '''Specifies whether authentication cookies set by a SAML IdP during login should be transferred to the user's profile.
6589       When a user authenticates via a SAML IdP during login, cookies set by the IdP are written to a temporary profile at first. These cookies can be transferred to the user's profile to carry forward the authentication state.
6591       When this policy is set to true, cookies set by the IdP are transferred to the user's profile every time he/she authenticates against the SAML IdP during login.
6593       When this policy is set to false or unset, cookies set by the IdP are transferred to the user's profile during his/her first login on a device only.
6595       This policy affects users whose domain matches the device's enrollment domain only. For all other users, cookies set by the IdP are transferred to the user's profile during his/her first login on the device only.''',
6596     },
6597     {
6598       'name': 'EasyUnlockAllowed',
6599       'type': 'main',
6600       'schema': { 'type': 'boolean' },
6601       'supported_on': ['chrome_os:38-'],
6602       'features': {
6603         'dynamic_refresh': True,
6604         'per_profile': True,
6605       },
6606       'example_value': True,
6607       'id': 272,
6608       'caption': '''Allows EasyUnlock to be used''',
6609       'desc': '''Allows EasyUnlock to be used on <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> devices.
6611       If you enable this setting, users will be allowed to use EasyUnlock if the requirements for the feature are satified.
6613       If you disable this setting, users will not be allowed to use EasyUnlock.
6615       If this policy is left not set, EasyUnlock is allowed if the requirements for the feature are satified.
6616       ''',
6617     },
6618     {
6619       'name': 'SessionLocales',
6620       'type': 'list',
6621       'schema': {
6622         'type': 'array',
6623         'items': { 'type': 'string' },
6624       },
6625       'supported_on': ['chrome_os:38-'],
6626       'features': {
6627         'can_be_recommended': True,
6628         'dynamic_refresh': True,
6629         'per_profile': True,
6630       },
6631       'example_value': ['de', 'fr'],
6632       'id': 274,
6633       'caption': '''Set the recommended locales for a public session''',
6634       'desc': '''Sets one or more recommended locales for a public sessions, allowing users to easily choose one of these locales.
6636       The user can choose a locale and a keyboard layout before starting a public session. By default, all locales supported by <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> are listed in alphabetic order. You can use this policy to move a set of recommended locales to the top of the list.
6638       If this policy is not set, the current UI locale will be pre-selected.
6640       If this policy is set, the recommended locales will be moved to the top of the list and will be visually separated from all other locales. The recommended locales will be listed in the order in which they appear in the policy. The first recommended locale will be pre-selected.
6642       If there is more than one recommended locale, it is assumed that users will want to select among these locales. Locale and keyboard layout selection will be prominently offered when starting a public session. Otherwise, it is assumed that most users will want to use the pre-selected locale. Locale and keyboard layout selection will be less prominently offered when starting a public session.
6644       When this policy is set and automatic login is enabled (see the |DeviceLocalAccountAutoLoginId| and |DeviceLocalAccountAutoLoginDelay| policies), the automatically started public session will use the first recommended locale and the most popular keyboard layout matching this locale.
6646       The pre-selected keyboard layout will always be the most popular layout matching the pre-selected locale.
6648       This policy can only be set as recommended. You can use this policy to move a set of recommended locales to the top but users are always allowed to choose any locale supported by <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> for their session.
6649       ''',
6650     },
6651     {
6652       'name': 'BrowserGuestModeEnabled',
6653       'type': 'main',
6654       'schema': { 'type': 'boolean' },
6655       'supported_on': ['chrome.*:38-'],
6656       'features': {
6657         'dynamic_refresh': True,
6658         'per_profile': False,
6659       },
6660       'example_value': True,
6661       'id': 275,
6662       'caption': '''Enable guest mode in browser''',
6663       'desc': '''If this policy is set to true or not configured, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will enable guest logins. Guest logins are <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> profiles where all windows are in incognito mode.
6665       If this policy is set to false, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will not allow guest profiles to be started.''',
6666     },
6667   ],
6668   'messages': {
6669     # Messages that are not associated to any policies.
6670     'win_supported_winxpsp2': {
6671       'desc': '''A label specifying the oldest possible compatible version of Windows. This text will appear right next to a label containing the text 'Supported on:'.''',
6672       'text': '''Microsoft Windows XP SP2 or later'''
6673     },
6674     'mac_chrome_preferences': {
6675       'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chromium are being edited''',
6676       'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferences'''
6677     },
6678     'doc_data_type': {
6679       'desc': '''Caption text of the field 'data type' in the summary chart of a policy in the generated documentation''',
6680       'text': '''Data type:'''
6681     },
6682     'doc_win_reg_loc': {
6683       'desc': '''Caption text of the field 'windows registry location' in the summary chart of a policy in the generated documentation''',
6684       'text': '''Windows registry location:'''
6685     },
6686     'doc_mac_linux_pref_name': {
6687       'desc': '''Caption text of the field 'mac/linux preference name' in the summary chart of a policy in the generated documentation''',
6688       'text': '''Mac/Linux preference name:'''
6689     },
6690     'doc_supported_on': {
6691       'desc': '''Caption text of the list of 'products, platforms and versions where this policy is supported' in the summary chart of a policy in the generated documentation''',
6692       'text': '''Supported on:'''
6693     },
6694     'doc_since_version': {
6695       'desc': '''Text in the summary chart of a policy that specifies the version number in which the policy was introduced.''',
6696       'text': '''since version <ph name="SINCE_VERSION">$6<ex>8</ex></ph>'''
6697     },
6698     'doc_until_version': {
6699       'desc': '''Text in the summary chart of a policy that specifies the version number after which the policy was dropped.''',
6700       'text': '''until version <ph name="UNTIL_VERSION">$6<ex>10</ex></ph>'''
6701     },
6702     'doc_supported_features': {
6703       'desc': '''Caption text of the list of 'policy features that this policy supports' in the summary chart of a policy in the generated documentation''',
6704       'text': '''Supported features:'''
6705     },
6706     'doc_description': {
6707       'desc': '''Caption text of the 'description text' in the summary chart of a policy in the generated documentation''',
6708       'text': '''Description:'''
6709     },
6710     'doc_example_value': {
6711       'desc': '''Caption text of the field 'example value' in the summary chart of a policy in the generated documentation''',
6712       'text': '''Example value:'''
6713     },
6714     'doc_intro': {
6715       'desc': '''Introduction text for the generated policy documentation''',
6716       'text': '''Both Chromium and Google Chrome support the same set of
6717       policies. Please note that this document may include policies that are
6718       targeted for unreleased software versions (i.e. their 'supported on' entry
6719       refers to an unreleased version) and that such policies are subject to
6720       change or removal without prior notice.
6722       These policies are strictly intended to be used to configure instances of
6723       <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> internal to your
6724       organization. Use of these policies outside of your organization (for
6725       example, in a publicly distributed program) is considered malware and will
6726       likely be labeled as malware by Google and anti-virus vendors.
6728       These settings don't need to be configured manually!  Easy-to-use
6729       templates for Windows, Mac and Linux are available for download from <ph
6730       name="POLICY_TEMPLATE_DOWNLOAD_URL">http://www.chromium.org/administrators/policy-templates<ex>
6731       http://www.chromium.org/administrators/policy-templates</ex></ph>.
6733       Note: Starting with <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>
6734       28, policies are loaded directly from the Group Policy API on
6735       Windows. Policies manually written to the registry will be ignored. See
6736       http://crbug.com/259236 for details.
6738       Starting with <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> 35, policies are read directly from the registry if the workstation is joined to an Active Directory domain; otherwise the policies are read from GPO.'''
6739     },
6740     'doc_back_to_top': {
6741       'desc': '''Text of a link in the generated policy documentation, that takes the user to the top of the page''',
6742       'text': '''Back to top'''
6743     },
6744     'doc_supported': {
6745       'desc': '''Appears next to the name of each supported feature in the 'list of supported policy features' in the generated policy documentation''',
6746       'text': '''Yes'''
6747     },
6748     'doc_not_supported': {
6749       'desc': '''Appears next to the name of each unsupported feature in the 'list of supported policy features' in the generated policy documentation''',
6750       'text': '''No'''
6751     },
6752     'doc_name_column_title': {
6753       'desc': '''Appears at the top of the policy summary table, over the column of policy names, in the generated policy documentation''',
6754       'text': '''Policy Name'''
6755     },
6756     'doc_description_column_title': {
6757       'desc': '''Appears at the top of the policy summary table, over the column of short policy descriptions, in the generated policy documentation''',
6758       'text': '''Description'''
6759     },
6760     'doc_feature_dynamic_refresh': {
6761       'desc': '''The name of the feature that indicates for a given policy that changes to it are respected by Chromium without a browser restart''',
6762       'text': '''Dynamic Policy Refresh'''
6763     },
6764     'doc_feature_can_be_recommended': {
6765       'desc': '''The name of the feature that indicates for a given policy that it can be recommended, instead of mandatory''',
6766       'text': '''Can Be Recommended'''
6767     },
6768     'doc_feature_per_profile': {
6769       'desc': '''The name of the feature that indicates whether a policy is applicable to browser Profiles individually or whether it affects the entire browser.''',
6770       'text': '''Per Profile'''
6771     },
6772     'doc_deprecated': {
6773       'desc': '''Text appended in parentheses to the policy name to indicate that it has been deprecated''',
6774       'text': 'deprecated',
6775     },
6776     'doc_recommended': {
6777       'desc': '''Text appended in parentheses next to the policies top-level container to indicate that those policies are of the Recommended level''',
6778       'text': 'Default Settings (users can override)',
6779     },
6780   },
6781   'placeholders': [],