-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpolicy.json
More file actions
59 lines (59 loc) · 2.43 KB
/
policy.json
File metadata and controls
59 lines (59 loc) · 2.43 KB
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
{
// Force the extension to be installed from chrome webstore
"ExtensionInstallForcelist": [
"jdomodgcaefkonkoihbkaciejfkdgikd;https://clients2.google.com/service/update2/crx"
],
// Allow the extension to be installed from chrome webstore if there's a wildcard blacklist
"ExtensionInstallWhitelist": [
"jdomodgcaefkonkoihbkaciejfkdgikd"
],
"3rdparty": {
"extensions": {
/**
* The value jdomodgcaefkonkoihbkaciejfkdgikd is the ID for the extension in the chrome web store.
* If you're using an unpackaged version of the extension, replace the ID below with the temporary extension ID.
*/
"jdomodgcaefkonkoihbkaciejfkdgikd": {
// Add information about your StoredSafe server.
"sites": [{
// Replace my.first.site with the host name of your StoredSafe server.
"host": "my.first.site",
// Replace myfirstapikey with a valid API key for the StoredSafe server above.
"apikey": "myfirstapikey"
},
// Copy {...} to add another site if you have access to multiple StoredSafe servers (2, 3, 4...).
{
"host": "my.second.site",
"apikey": "mysecondapikey"
}
],
"settings": {
// Enforce settings, overriding user settings and default values.
"enforced": {
// Uncomment lines (remove // ) below to enforce values.
// Hard logout after maxTokenLife hours.
// "maxTokenLife": 10,
// Automatically fill forms on pages with matching values in StoredSafe (true/false).
// "autoFill": false,
// Log out after being idle for idleMax minutes
// "idleMax": 30,
// Offer to save logins after submitting forms
// "offerSave": true
},
// Override built-in default values in extension.
"defaults": {
// Uncomment lines (remove // ) below to override built-in default values in the extension.
// // Hard logout after maxTokenLife hours.
// "maxTokenLife": 10,
// // Automatically fill forms on pages with matching values in StoredSafe (true/false).
// "autoFill": false,
// // Log out after being idle for idleMax minutes
// "idleMax": 30,
// Offer to save logins after submitting forms
// "offerSave": true
}
}
}
}
}
}