2015-10-21 17:53:03 +02:00
|
|
|
{
|
2015-11-27 20:30:17 +01:00
|
|
|
"$schema": "http://json-schema.org/draft-03/schema#",
|
2015-11-04 22:00:27 +01:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"adminSettings": {
|
2021-01-04 13:54:24 +01:00
|
|
|
"title": "A valid JSON string compliant with uBO's backup format",
|
2015-11-04 22:00:27 +01:00
|
|
|
"description": "All entries present will overwrite local settings.",
|
|
|
|
"type": "string"
|
2021-01-04 13:54:24 +01:00
|
|
|
},
|
2021-01-06 17:39:24 +01:00
|
|
|
"advancedSettings": {
|
|
|
|
"title": "A list of [name,value] pairs to populate advanced settings",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"title": "A [name,value] pair",
|
|
|
|
"type": "array",
|
|
|
|
"items": { "type": "string" }
|
|
|
|
}
|
|
|
|
},
|
2021-01-16 16:35:56 +01:00
|
|
|
"userSettings": {
|
|
|
|
"title": "A list of [name,value] pairs to populate user settings",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"title": "A [name,value] pair",
|
|
|
|
"type": "array",
|
|
|
|
"items": { "type": "string" }
|
|
|
|
}
|
|
|
|
},
|
2021-01-06 17:39:24 +01:00
|
|
|
"disableDashboard": {
|
|
|
|
"title": "Set to true to prevent access to configuration options",
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"disabledPopupPanelParts": {
|
|
|
|
"title": "An array of strings used to remove parts of the popup panel",
|
|
|
|
"type": "array",
|
|
|
|
"items": { "type": "string" }
|
|
|
|
},
|
|
|
|
"toAdd": {
|
|
|
|
"title": "Settings to add at launch time",
|
2021-01-05 18:16:50 +01:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"trustedSiteDirectives": {
|
|
|
|
"title": "A list of trusted-site directives",
|
2021-01-06 17:39:24 +01:00
|
|
|
"description": "Trusted-site directives to always add at launch time.",
|
2021-01-05 18:16:50 +01:00
|
|
|
"type": "array",
|
|
|
|
"items": { "type": "string" }
|
|
|
|
}
|
2021-01-04 13:54:24 +01:00
|
|
|
}
|
2021-01-05 18:16:50 +01:00
|
|
|
},
|
2021-01-06 17:39:24 +01:00
|
|
|
"toOverwrite": {
|
|
|
|
"title": "Settings to overwrite at launch time",
|
2021-01-05 18:16:50 +01:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2021-01-10 18:31:31 +01:00
|
|
|
"filters": {
|
|
|
|
"title": "A collection of filters",
|
|
|
|
"description": "The set of user filters to use at launch time -- where each entry is a distinct line.",
|
|
|
|
"type": "array",
|
|
|
|
"items": { "type": "string" }
|
|
|
|
},
|
2021-01-08 15:18:26 +01:00
|
|
|
"filterLists": {
|
|
|
|
"title": "A collection of list identifiers and/or list URLs",
|
|
|
|
"description": "The set of filter lists to use at launch time.",
|
|
|
|
"type": "array",
|
|
|
|
"items": { "type": "string" }
|
|
|
|
},
|
2021-01-05 18:16:50 +01:00
|
|
|
"trustedSiteDirectives": {
|
|
|
|
"title": "A list of trusted-site directives",
|
|
|
|
"type": "array",
|
|
|
|
"items": { "type": "string" }
|
|
|
|
}
|
2021-01-05 21:58:55 +01:00
|
|
|
}
|
2015-10-21 17:53:03 +02:00
|
|
|
}
|
2015-11-04 22:00:27 +01:00
|
|
|
}
|
2015-10-21 17:53:03 +02:00
|
|
|
}
|