config.json 716 B

1234567891011121314151617181920212223242526
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "type": "object",
  4. "additionalProperties": false,
  5. "required_plugins": ["chrome"],
  6. "properties": {
  7. "MODALCLOSER_ENABLED": {
  8. "type": "boolean",
  9. "default": true,
  10. "x-aliases": ["CLOSE_MODALS", "AUTO_CLOSE_MODALS"],
  11. "description": "Enable automatic modal and dialog closing"
  12. },
  13. "MODALCLOSER_TIMEOUT": {
  14. "type": "integer",
  15. "default": 1250,
  16. "minimum": 100,
  17. "description": "Delay before auto-closing dialogs (ms)"
  18. },
  19. "MODALCLOSER_POLL_INTERVAL": {
  20. "type": "integer",
  21. "default": 500,
  22. "minimum": 100,
  23. "description": "How often to check for CSS modals (ms)"
  24. }
  25. }
  26. }