Skip to content

Commit f8b2ba5

Browse files
committed
add settings to schema
1 parent 54ab5dc commit f8b2ba5

File tree

1 file changed

+27
-11
lines changed

1 file changed

+27
-11
lines changed

schema-chrome.json

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,45 @@
11
{
22
"type": "object",
3-
43
"properties": {
54
"disableInstallHelp": {
65
"title": "Disable opening help page on install",
7-
"description": "If set to true then help page will not be opened on install.",
6+
"description": "If set to true, then help page will not be opened on install.",
87
"type": "boolean"
98
},
10-
119
"disableBackup": {
12-
"title": "Disable 3rd party backup",
13-
"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.",
14-
"type": "boolean"
10+
"title": "Disable 3rd party backup",
11+
"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.",
12+
"type": "boolean"
13+
},
14+
"disableExportImport": {
15+
"title": "Disable import / export menu",
16+
"description": "If set to true, then 'Export / Import' menu will be hidden.",
17+
"type": "boolean"
18+
},
19+
"disablePasswordCaching": {
20+
"title": "Disable password caching",
21+
"description": "If set to true, then Authenticator will never cache encryption password in the background. Normally the password is stored for as long as the browser is open, this will make Authenticator prompt for password on every open. WARNING: This will break everything that changes data with background services (E.g.: QR scanning and import page).",
22+
"type": "boolean"
1523
},
16-
1724
"storageArea": {
18-
"title": "Storage area",
19-
"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.",
20-
"type": "string"
25+
"title": "Storage area",
26+
"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.",
27+
"type": "string"
2128
},
22-
2329
"feedbackURL": {
2430
"title": "Feedback URL",
2531
"description": "Change the URL the feedback button opens.",
2632
"type": "string"
33+
},
34+
"enforcePassword": {
35+
"title": "Enforce password",
36+
"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.",
37+
"type": "boolean"
38+
},
39+
"enforceAutolock": {
40+
"title": "Enforce autolock",
41+
"description": "If any value is set, then the user will not be able to change the autolock setting. Set to a number in minutes.",
42+
"type": "number"
2743
}
2844
}
2945
}

0 commit comments

Comments
 (0)