-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathmanaged_storage.json
38 lines (38 loc) · 1.4 KB
/
managed_storage.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
{
"type": "object",
"properties": {
"ignored_extensions": {
"title": "A list of appids of extensions which should not be checked for updates.",
"description": "Appids which are not installed will simply be ignored, it is safe to add them here.",
"type": "array",
"items": {
"type": "string"
}
},
"auto_update": {
"title": "Enable automatic updates in extension options.",
"description": "Default value is true",
"type": "boolean"
},
"check_store_apps": {
"title": "Enable updates for Chrome Web Store extensions in extension options.",
"description": "Default value is true",
"type": "boolean"
},
"check_external_apps": {
"title": "Enable updates for non-Chrome Web Store extensions in extension options.",
"description": "Default value is true",
"type": "boolean"
},
"update_period_in_minutes": {
"title": "Update check interval in minutes.",
"description": "Default is 60",
"type": "integer"
},
"manually_install": {
"title": "Manually install extensions.",
"description": "Default value is false, set to true if not using ungoogled chromium",
"type": "boolean"
}
}
}