forked from Authenticator-Extension/Authenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema-chrome.json
40 lines (40 loc) · 1.56 KB
/
schema-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
{
"type": "object",
"properties": {
"disableInstallHelp": {
"title": "Disable opening help page on install",
"description": "If set to true, then help page will not be opened on install.",
"type": "boolean"
},
"disableBackup": {
"title": "Disable 3rd party backup",
"description": "If set to true, then 3rd party backup options will be hidden. If 3rd party backup is already configured for a user this will not stop it.",
"type": "boolean"
},
"disableExport": {
"title": "Disable import / export menu",
"description": "If set to true, then export buttons will be hidden.",
"type": "boolean"
},
"storageArea": {
"title": "Storage area",
"description": "Set to 'sync' or 'local'. If set will force user to use specified storage area. This setting will not check if a user is currently using another storage space and may hide data.",
"type": "string"
},
"feedbackURL": {
"title": "Feedback URL",
"description": "Change the URL the feedback button opens.",
"type": "string"
},
"enforcePassword": {
"title": "Enforce password",
"description": "If set to true, then user will be prompted to set a password before adding an account (if none set) and the remove password button will be hidden.",
"type": "boolean"
},
"enforceAutolock": {
"title": "Enforce autolock",
"description": "If any value is set, then the user will not be able to change the autolock setting. Set to a number in minutes.",
"type": "number"
}
}
}