-
Notifications
You must be signed in to change notification settings - Fork 2
/
com.google.Chrome.json
988 lines (977 loc) · 39 KB
/
com.google.Chrome.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
{
"$schema": "http://json-schema.org/schema#",
"title": "Google Chrome Settings",
"description": "Domain: com.google.Chrome",
"type": "object",
"definitions": {
"extension_types": {
"title": "Extension Type",
"type": "string",
"enum": ["extension", "theme", "user_script", "hosted_app", "legacy_packaged_app", "platform_app"]
}
},
"properties": {
"AutoSelectCertificateForUrls": {
"title": "Auto Select Certificate For URLs",
"items": {
"properties": {
"filter": {
"properties": {
"ISSUER": {
"id": "CertPrincipalFields",
"properties": {
"CN": {
"type": "string"
},
"L": {
"type": "string"
},
"O": {
"type": "string"
},
"OU": {
"type": "string"
}
},
"type": "object"
},
"SUBJECT": {
"$ref": "CertPrincipalFields"
}
},
"type": "object"
},
"pattern": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"DefaultCookiesSetting": {
"title": "Default cookies setting",
"description": "1 = Allow all sites to set local data, 2 = Do not allow any site to set local data, 4 = Keep cookies for the duration of the session. If unset 'AllowCookies' will be used and the user will be able to change it.",
"type": "integer",
"enum": [1,2,4]
},
"CookiesAllowedForUrls": {
"title": "Allow cookies on these sites",
"description": "A list of URLs specifically allowed to set cookies",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"CookiesBlockedForUrls": {
"title": "Block cookies on these sites",
"description": "A list of URLs specifically blocked from setting cookies",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"CookiesSessionOnlyForUrls": {
"title": "Limit cookies from matching URLs to the current session",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"DefaultGeolocationSetting": {
"title": "Default geolocation setting",
"description": "1 = Allow sites to track the users' physical location, 2 = Do not allow any site to track the users' physical location, 3 = Ask whenever a site wants to track the users' physical location. If this policy is left not set, 'AskGeolocation' will be used and the user will be able to change it.",
"type": "integer",
"enum": [1, 2, 3]
},
"DefaultImagesSetting": {
"title": "Default images setting",
"description": "1 = Allow all sites to show all images,2 = Do not allow any site to show images. If this policy is left not set, 'AllowImages' will be used and the user will be able to change it.",
"type": "integer",
"enum": [1, 2]
},
"ImagesAllowedForUrls": {
"title": "Allow images on these sites",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"ImagesBlockedForUrls": {
"title": "Block images on these sites",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"DefaultJavaScriptSetting": {
"title": "Default JavaScript setting",
"description": "1 = Allow all sites to run JavaScript, 2 = Do not allow any site to run JavaScript. If this policy is left not set, 'AllowJavaScript' will be used and the user will be able to change it.",
"type": "integer",
"enum": [1, 2]
},
"JavaScriptAllowedForUrls": {
"title": "Allow JavaScript on these sites",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"JavaScriptBlockedForUrls": {
"title": "Block JavaScript on these sites",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"DefaultNotificationSetting": {
"title": "Default notification setting",
"description": "1 = Allow sites to show desktop notifications, 2 = Do not allow any site to show desktop notifications, 3 = Ask every time a site wants to show desktop notifications. If this policy is left not set, 'AskNotifications' will be used and the user will be able to change it.",
"type": "integer",
"enum": [1, 2, 3]
},
"NotificationsAllowedForUrls": {
"title": "Allow notifications on these sites",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"NotificationsBlockedForUrls": {
"title": "Block notifications on these sites",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"DefaultPluginsSetting": {
"title": "Default Flash setting",
"description": "1 = Allow all sites to automatically run the Flash plugin, 2 = Block the Flash plugin, 3 = Click to play. If this policy is left not set, the user will be able to change this setting manually.",
"type": "integer",
"enum": [1, 2, 3]
},
"PluginsAllowedForUrls": {
"title": "Allow the Flash plugin on these sites",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"PluginsBlockedForUrls": {
"title": "Block the Flash plugin on these sites",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"DefaultPopupsSetting": {
"title": "Default popups setting",
"description": "1 = Allow all sites to show pop-ups, 2 = Do not allow any site to show popups. If this policy is left not set, 'BlockPopups' will be used and the user will be able to change it.",
"type": "integer",
"enum": [1, 2]
},
"PopupsAllowedForUrls": {
"title": "Allow popups on these sites",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"PopupsBlockedForUrls": {
"title": "Block popups on these sites",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"DefaultWebBluetoothGuardSetting": {
"title": "Control use of the Web Bluetooth API",
"description": "2 = Do not allow any site to request access to Bluetooth devices via the Web Bluetooth API, 3 = Allow sites to ask the user to grant access to a nearby Bluetooth device. If this policy is left not set, '3' will be used, and the user will be able to change it.",
"type": "integer",
"enum": [2, 3]
},
"DefaultWebUsbGuardSetting": {
"title": "Control use of the WebUSB API",
"description": "If this policy is left not set, '3' will be used, and the user will be able to change it. 2 = Do not allow any site to request access to USB devices via the WebUSB API, 3 = Allow sites to ask the user to grant access to a connected USB device",
"type": "integer",
"enum": [2, 3]
},
"WebUsbAllowedForUrls": {
"title": "Allow WebUSB on these sites",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"WebUsbBlockedForUrls": {
"title": "Block WebUSB on these sites",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"WebUsbAllowDevicesForUrls": {
"title": "Devices to allow on these sites",
"items": {
"properties": {
"devices": {
"items": {
"properties": {
"product_id": {
"type": "integer"
},
"vendor_id": {
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"urls": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"devices",
"urls"
],
"type": "object"
},
"type": "array"
},
"RegisteredProtocolHandlers": {
"title": "Register protocol handlers",
"items": {
"properties": {
"default": {
"description": "A boolean flag indicating if the protocol handler should be set as the default.",
"type": "boolean"
},
"protocol": {
"description": "The protocol for the protocol handler.",
"type": "string"
},
"url": {
"description": "The URL of the protocol handler.",
"type": "string"
}
},
"required": [
"protocol",
"url"
],
"type": "object"
},
"type": "array"
},
"DefaultSearchProviderEnabled": {
"title": "Enable the default search provider",
"type": "boolean",
"default": "true"
},
"DefaultSearchProviderName": {
"title": "Default search provider name",
"type": "string"
},
"DefaultSearchProviderSearchURL": {
"title": "Default search provider search URL",
"type": "string"
},
"DefaultSearchProviderSearchURLPostParams": {
"title": "Parameters for search URL which uses POST",
"type": "string"
},
"DefaultSearchProviderSuggestURL": {
"title": "Default search provider suggest URL",
"type": "string"
},
"DefaultSearchProviderSuggestURLPostParams": {
"title": "Parameters for suggest URL which uses POST",
"type": "string"
},
"DefaultSearchProviderNewTabURL": {
"title": "Default search provider new tab page URL",
"type": "string"
},
"DefaultSearchProviderAlternateURLs": {
"title": "Alternate URLs for the default search provider",
"description": "The URLs should contain the string '{searchTerms}', which will be used to extract the search terms.",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"DefaultSearchProviderEncodings": {
"title": "Default search provider encodings",
"type": "array",
"items": {
"type": "string",
"title": "Character encoding"
}
},
"DefaultSearchProviderIconURL": {
"title": "Default search provider icon",
"type": "string"
},
"DefaultSearchProviderImageURL": {
"title": "Parameter providing search-by-image feature for the default search provider",
"type": "string"
},
"DefaultSearchProviderImageURLPostParams": {
"title": "Parameters for image URL which uses POST",
"type": "string"
},
"DefaultSearchProviderKeyword": {
"title": "Default search provider keyword",
"type": "string"
},
"ExtensionAllowedTypes": {
"id": "ExtensionAllowedTypes",
"title": "Allowed app/extension types",
"type": "array",
"items": {
"title": "Extension Type",
"type": "string",
"enum": ["extension", "theme", "user_script", "hosted_app", "legacy_packaged_app", "platform_app"]
}
},
"ExtensionInstallBlacklist": {
"title": "Extension installation blacklist",
"description": "A blacklist value of '*' means all extensions are blacklisted unless they are explicitly listed in the whitelist.",
"type": "array",
"items": {
"type": "string",
"title": "Extension ID"
}
},
"ExtensionInstallWhitelist": {
"title": "Extension installation whitelist",
"type": "array",
"items": {
"type": "string",
"title": "Extension ID"
}
},
"ExtensionInstallForcelist": {
"title": "Force-installed apps and extensions",
"type": "array",
"items": {
"type": "string",
"title": "Extension ID"
}
},
"ExtensionInstallSources": {
"id": "ExtensionInstallSources",
"title": "Extension, app, and user script install sources",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"ExtensionSettings": {
"title": "Extension management settings",
"patternProperties": {
"^[a-p]{32}(?:,[a-p]{32})*,?$": {
"properties": {
"allowed_permissions": {
"$ref": "ListOfPermissions"
},
"blocked_install_message": {
"description": "text that will be displayed to the user in the chrome webstore if installation is blocked.",
"type": "string"
},
"blocked_permissions": {
"id": "ListOfPermissions",
"items": {
"pattern": "^[a-z][a-zA-Z0-9.]*$",
"type": "string"
},
"type": "array"
},
"installation_mode": {
"enum": [
"blocked",
"allowed",
"force_installed",
"normal_installed",
"removed"
],
"type": "string"
},
"minimum_version_required": {
"pattern": "^[0-9]+([.][0-9]+)*$",
"type": "string"
},
"runtime_allowed_hosts": {
"$ref": "ListOfUrlPatterns"
},
"runtime_blocked_hosts": {
"id": "ListOfUrlPatterns",
"items": {
"type": "string"
},
"type": "array"
},
"update_url": {
"type": "string"
}
},
"type": "object"
},
"^update_url:": {
"properties": {
"allowed_permissions": {
"$ref": "ListOfPermissions"
},
"blocked_permissions": {
"$ref": "ListOfPermissions"
},
"installation_mode": {
"enum": [
"blocked",
"allowed",
"removed"
],
"type": "string"
}
},
"type": "object"
}
},
"properties": {
"*": {
"properties": {
"allowed_types": {
"$ref": "ExtensionAllowedTypes"
},
"blocked_install_message": {
"type": "string"
},
"blocked_permissions": {
"$ref": "ListOfPermissions"
},
"install_sources": {
"$ref": "ExtensionInstallSources"
},
"installation_mode": {
"enum": [
"blocked",
"allowed",
"removed"
],
"type": "string"
},
"runtime_allowed_hosts": {
"$ref": "ListOfUrlPatterns"
},
"runtime_blocked_hosts": {
"$ref": "ListOfUrlPatterns"
}
},
"type": "object"
}
},
"type": "object"
},
"EnableMediaRouter": {
"title": "Enable Google Cast",
"type": "boolean",
"default": "true"
},
"ShowCastIconInToolbar": {
"title": "Show the Google Cast toolbar icon",
"type": "boolean",
"default": "false"
},
"MediaRouterCastAllowAllIPs": {
"title": "Allow Google Cast to connect to Cast devices on all IP addresses",
"type": "boolean"
},
"AllowCrossOriginAuthPrompt": {
"title": "Cross-origin HTTP Basic Auth prompts",
"type": "boolean",
"default": "false"
},
"AuthNegotiateDelegateByKdcPolicy": {
"title": "Use KDC policy to delegate credentials",
"type": "boolean",
"default": "false"
},
"AuthNegotiateDelegateWhitelist": {
"title": "Kerberos delegation server whitelist",
"description": "Separate multiple server names with commas. Wildcards (*) are allowed.",
"type": "string"
},
"AuthSchemes": {
"title": "Supported authentication schemes",
"description": "Possible values are 'basic', 'digest', 'ntlm' and 'negotiate'. Separate multiple values with commas.",
"type": "string"
},
"AuthServerWhitelist": {
"title": "Authentication server whitelist",
"description": "Separate multiple server names with commas. Wildcards (*) are allowed.",
"type": "string",
},
"DisableAuthNegotiateCnameLookup": {
"title": "Disable CNAME lookup when negotiating Kerberos authentication",
"type": "boolean",
"default": "false"
},
"EnableAuthNegotiatePort": {
"title": "Include non-standard port in Kerberos SPN",
"type": "boolean",
"default": "false"
},
"NtlmV2Enabled": {
"title": "Enable NTLMv2 authentication",
"type": "boolean",
"default": "true"
},
"BrowserSwitcherEnabled": {
"title": "Enable the Legacy Browser Support feature",
"type": "boolean",
"default": "false"
},
"AlternativeBrowserPath": {
"title": "Alternative browser to launch for configured websites",
"description": "When this policy is set to one of ${firefox}, ${safari} or ${opera}, that browser will launch if it is installed.",
"type": "string"
},
"AlternativeBrowserParameters": {
"title": "Command-line parameters for the alternative browser",
"type": "string"
},
"BrowserSwitcherDelay": {
"title": "Delay before launching alternative browser (milliseconds)",
"type": "integer"
},
"BrowserSwitcherKeepLastChromeTab": {
"title": "Keep last tab open in Chrome when switching browsers",
"type": "boolean",
"default": "true"
},
"BrowserSwitcherUrlGreylist": {
"title": "Websites that should never trigger a browser switch",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"BrowserSwitcherUrlList": {
"title": "Websites to open in alternative browser",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"BrowserSwitcherExternalGreylistUrl": {
"title": "URL of an XML file that contains URLs that should never trigger a browser switch",
"type": "string"
},
"BrowserSwitcherExternalSitelistUrl": {
"title": "URL of an XML file that contains URLs to load in an alternative browser",
"type": "string"
},
"AbusiveExperienceInterventionEnforce": {
"title": "Enforce Abusive Experience Intervention",
"type": "boolean",
"default": "true"
},
"AdsSettingForIntrusiveAdsSites": {
"title": "Ads setting for sites with intrusive ads",
"description": "1 = Allow ads on all sites, 2 = Do not allow ads on sites with intrusive ads",
"type": "integer",
"enum": [1, 2]
},
"AllowDeletingBrowserHistory": {
"title": "Enable deleting browser and download history",
"type": "boolean",
"default": "true"
},
"AllowDinosaurEasterEgg": {
"title": "Allow Dinosaur Easter Egg Game",
"type": "boolean",
"default": "true"
},
"AllowFileSelectionDialogs": {
"title": "Allow invocation of file selection dialogs",
"type": "boolean",
"default": "true"
},
"AllowOutdatedPlugins": {
"title": "Allow running plugins that are outdated",
"type": "boolean"
},
"AllowPopupsDuringPageUnload": {
"title": "Allow a page to show popups during its unloading",
"type": "boolean",
"default": "false"
},
"AllowedDomainsForApps": {
"title": "Define domains allowed to access G Suite",
"type": "string"
},
"AlternateErrorPagesEnabled": {
"title": "Enable alternate error pages",
"type": "boolean"
},
"AlwaysOpenPdfExternally": {
"title": "Always Open PDF files externally",
"type": "boolean"
},
"AudioCaptureAllowed": {
"title": "Allow audio capture",
"type": "boolean",
"default": "true"
},
"AudioCaptureAllowedUrls": {
"title": "URLs that will be granted access to audio capture devices without prompt",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"AutoFillEnabled": {
"title": "AutoFill Enabled (deprecated)",
"type": "boolean",
"default": "true"
},
"AutofillAddressEnabled": {
"title": "Enable AutoFill for addresses",
"type": "boolean",
"default": "true"
},
"AutofillCreditCardEnabled": {
"title": "Enable AutoFill for credit cards",
"type": "boolean",
"default": "true"
},
"AutoplayAllowed": {
"title": "Allow media autoplay",
"type": "boolean",
"default": "false"
},
"AutoplayWhitelist": {
"title": "Allow media autoplay on a whitelist of URLs",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"BlockThirdPartyCookies": {
"title": "Block third party cookies",
"type": "boolean",
},
"BookmarkBarEnabled": {
"title": "Enable Bookmark Bar",
"description": "If you enable or disable this setting, users cannot change or override it in Google Chrome.",
"type": "boolean"
},
"BrowserAddPersonEnabled": {
"title": "Enable add person in user manager",
"type": "boolean",
"default": "true"
},
"BrowserGuestModeEnabled": {
"title": "Enable guest mode in browser",
"type": "boolean",
"default": "true"
},
"BrowserGuestModeEnforced": {
"title": "Enforce browser guest mode",
"type": "boolean",
"default": "false"
},
"BrowserNetworkTimeQueriesEnabled": {
"title": "Allow queries to a Google time service",
"type": "boolean",
"default": "true"
},
"BrowserSignin": {
"title": "Browser sign in settings",
"description": "If this policy is not set then the user can decide if they want to enable the browser sign in option and use it as they see fit. 0 = Disable browser sign-in, 1 = Enable browser sign-in, 2 = Force users to sign-in to use the browser",
"type": "integer",
"enum": [0, 1, 2]
},
"BuiltInDnsClientEnabled": {
"title": "Use built-in DNS client",
"type": "boolean"
},
"CertificateTransparencyEnforcementDisabledForCas": {
"title": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes",
"type": "array",
"items": {
"type": "string",
"title": "CA Hash"
}
},
"CertificateTransparencyEnforcementDisabledForLegacyCas": {
"title": "Disable Certificate Transparency enforcement for a list of Legacy Certificate Authorities",
"type": "array",
"items": {
"type": "string",
"title": "CA Hash"
}
},
"CertificateTransparencyEnforcementDisabledForUrls": {
"title": "Disable Certificate Transparency enforcement for a list of URLs",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"CloudManagementEnrollmentMandatory": {
"title": "Enable mandatory cloud management enrollment",
"type": "boolean"
},
"CloudManagementEnrollmentToken": {
"title": "Enrollment token of cloud policy",
"type": "string"
},
"CloudPolicyOverridesPlatformPolicy": {
"title": "Google Chrome cloud policy overrides Platform policy",
"type": "boolean"
},
"CommandLineFlagSecurityWarningsEnabled": {
"title": "Enable security warnings for command-line flags",
"type": "boolean"
},
"ComponentUpdatesEnabled": {
"title": "Enable component updates in Google Chrome",
"type": "boolean",
"default": "true"
},
"DefaultBrowserSettingEnabled": {
"title": "Set Google Chrome as Default Browser",
"type": "boolean",
"default": "true"
},
"DefaultDownloadDirectory": {
"title": "Set default download directory",
"type": "string",
"default": "~/Downloads"
},
"DownloadDirectory": {
"title": "Set download directory (enforced)",
"type": "string"
},
"DownloadRestrictions": {
"title": "Download restrictions",
"description": "0 = No special restrictions, 1 = Block dangerous downloads, 2 = Block potentially dangerous downloads, 3 = Block all downloads, 4 = Block malicious downloads",
"type": "integer",
"enum": [0, 1, 2, 3, 4]
},
"DeveloperToolsAvailability": {
"title": "Control where Developer Tools can be used",
"description": "0 = Disallow usage of the Developer Tools on extensions installed by enterprise policy, allow usage of the Developer Tools in other contexts, 1 = Allow usage of the Developer Tools, 2 = Disallow usage of the Developer Tools",
"type": "integer",
"enum": [0, 1, 2]
},
"Disable3DAPIs": {
"title": "Disable support for 3D graphics APIs",
"type": "boolean",
"default": "true"
},
"DisableSafeBrowsingProceedAnyway": {
"title": "Disable proceeding from the Safe Browsing warning page",
"type": "boolean",
"default": "false"
},
"DisableScreenshots": {
"title": "Disable taking screenshots",
"type": "boolean",
"default": "false"
},
"DiskCacheDir": {
"title": "Set disk cache directory",
"type": "string"
},
"DiskCacheSize": {
"title": "Set disk cache size in bytes",
"description": "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.",
"type": "integer",
"minimum": 0
},
"EditBookmarksEnabled": {
"title": "Enable bookmark editing",
"type": "boolean",
"default": "true"
},
"EnableDeprecatedWebPlatformFeatures": {
"title": "Enable deprecated web platform features for a limited time",
"description": "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 https://bit.ly/blinkintents.",
"type": "array",
"items": {
"type": "string",
"title": "Deprecated Feature"
}
},
"EnableOnlineRevocationChecks": {
"title": "Enable online OCSP/CRL checks",
"type": "boolean",
"default": "false"
},
"EnterpriseHardwarePlatformAPIEnabled": {
"title": "Enable managed extensions to use the Enterprise Hardware Platform API",
"type": "boolean",
"default": "false"
},
"ForceEphemeralProfiles": {
"title": "Ephemeral profile",
"type": "boolean",
"default": "false"
},
"ForceGoogleSafeSearch": {
"title": "Force Google SafeSearch",
"type": "boolean",
"default": "false"
},
"ForceYouTubeRestrict": {
"title": "Force minimum YouTube Restricted Mode",
"description": "If this setting is set to Off or no value is set, Restricted Mode on YouTube is not enforced by Google Chrome. External policies such as YouTube policies might still enforce Restricted Mode, though. 0 = Do not enforce Restricted Mode on YouTube, 1 = Enforce at least Moderate Restricted Mode on YouTube, 2 = Enforce Strict Restricted Mode for YouTube",
"type": "integer",
"enum": [0, 1, 2]
},
"HardwareAccelerationModeEnabled": {
"title": "Use hardware acceleration when available",
"type": "boolean",
"default": "true"
},
"HideWebStoreIcon": {
"title": "Hide the web store from the New Tab Page and app launcher",
"type": "boolean",
"default": "false"
},
"ImportAutofillFormData": {
"title": "Import autofill form data from default browser on first run",
"type": "boolean"
},
"ImportBookmarks": {
"title": "Import bookmarks from default browser on first run",
"type": "boolean"
},
"ImportHistory": {
"title": "Import browsing history from default browser on first run",
"type": "boolean"
},
"ImportHomepage": {
"title": "Import homepage from default browser on first run",
"type": "boolean"
},
"ImportSavedPasswords": {
"title": "Import saved passwords from default browser on first run",
"type": "boolean"
},
"ImportSearchEngine": {
"title": "Import search engines from default browser on first run",
"type": "boolean"
},
"IncognitoModeAvailability": {
"title": "Incognito mode availability",
"description": "0 = Incognito mode available, 1 = Incognito mode disabled, 2 = Incognito mode forced",
"type": "integer",
"enum": [0, 1, 2]
},
"IsolateOrigins": {
"title": "Enable Site Isolation for specified origins",
"description": "If the policy is enabled, each of the named origins in a comma-separated list will run in its own process.",
"type": "string"
},
"ManagedBookmarks": {
"title": "Managed Bookmarks",
"items": {
"title": "Bookmark",
"id": "BookmarkType",
"properties": {
"children": {
"items": {
"title": "Bookmark",
"$ref": "BookmarkType"
},
"type": "array"
},
"name": {
"title": "Name",
"type": "string"
},
"toplevel_name": {
"title": "Top-Level Name",
"type": "string"
},
"url": {
"title": "URL",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"MaxInvalidationFetchDelay": {
"title": "Maximum fetch delay after a policy invalidation",
"description": "Specifies the maximum delay in milliseconds between receiving a policy invalidation and fetching the new policy from the device management service.",
"type": "integer",
"minimum": 1000,
"maximum": 300000,
"default": 5000
},
"MetricsReportingEnabled": {
"title": "Enable reporting of usage and crash-related data",
"type": "boolean"
},
"NetworkPredictionOptions": {
"title": "Enable network prediction",
"description": "If this policy is left not set, network prediction will be enabled but the user will be able to change it. 0 = Predict network actions on any network connection, 1 = Predict network actions on any network that is not cellular. (Deprecated in 50, removed in 52. After 52, if value 1 is set, it will be treated as 0 - predict network actions on any network connection.), 2 = Do not predict network actions on any network connection",
"type": "integer",
"enum": [0, 1, 2]
},
"OverrideSecurityRestrictionsOnInsecureOrigin": {
"title": "Origins or hostname patterns for which restrictions on insecure origins should not apply",
"type": "array",
"items": {
"type": "string",
"title": "URL"
}
},
"MaxConnectionsPerProxy": {
"title": "Maximal number of concurrent connections to the proxy server",
"description": "Specifies the maximal number of simultaneous connections to the proxy server.",
"type": "integer",
"minimum": 6,
"maximum": 100,
"default": 32
},
"HomepageLocation": {"type": "string", "default": "https://www.chromium.org"},
"PasswordManagerEnabled": {"type": "boolean", "default": "false"},
"ProxyMode": {"type": "string", "default": "direct"},
"SearchSuggestEnabled": {"type": "boolean", "default": "true"},
"SyncDisabled": {"type": "boolean", "default": "true"},
"UpdateDefault": {"type": "number", "default": 2, "minimum": 0, "maximum": 3}
}
}