-
Notifications
You must be signed in to change notification settings - Fork 4
/
Small Chrome Schema
62 lines (62 loc) · 1.81 KB
/
Small Chrome Schema
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
{
"title": "com.google.Chrome",
"description": "",
"properties": {
"ExtensionInstallWhitelist": {
"title": "ExtensionInstallWhitelist",
"description": "",
"property_order": 5,
"anyOf": [
{"type": "null", "title": "Not Configured"},
{
"title": "Configured",
"type": "array",
"items": {
"type": "string",
"title": "Entries"
}
}
]
},
"ExtensionInstallBlacklist": {
"title": "ExtensionInstallBlacklist",
"description": "",
"property_order": 10,
"anyOf": [
{"type": "null", "title": "Not Configured"},
{
"title": "Configured",
"type": "array",
"items": {
"type": "string",
"title": "Entries"
}
}
]
},
"AllowOutdatedPlugins": {
"title": "AllowOutdatedPlugins",
"description": "",
"property_order": 15,
"anyOf": [
{"type": "null", "title": "Not Configured"},
{
"title": "Configured",
"type": "string"
}
]
},
"SafeBrowsingEnabled": {
"title": "SafeBrowsingEnabled",
"description": "",
"property_order": 20,
"anyOf": [
{"type": "null", "title": "Not Configured"},
{
"title": "Configured",
"type": "string"
}
]
}
}
}