mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-15 08:22:39 +08:00
27 lines
716 B
JSON
27 lines
716 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required_plugins": ["chrome"],
|
|
"properties": {
|
|
"MODALCLOSER_ENABLED": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"x-aliases": ["CLOSE_MODALS", "AUTO_CLOSE_MODALS"],
|
|
"description": "Enable automatic modal and dialog closing"
|
|
},
|
|
"MODALCLOSER_TIMEOUT": {
|
|
"type": "integer",
|
|
"default": 1250,
|
|
"minimum": 100,
|
|
"description": "Delay before auto-closing dialogs (ms)"
|
|
},
|
|
"MODALCLOSER_POLL_INTERVAL": {
|
|
"type": "integer",
|
|
"default": 500,
|
|
"minimum": 100,
|
|
"description": "How often to check for CSS modals (ms)"
|
|
}
|
|
}
|
|
}
|