config.json 578 B

123456789101112131415161718192021
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "type": "object",
  4. "additionalProperties": false,
  5. "required_plugins": ["chrome"],
  6. "properties": {
  7. "ACCESSIBILITY_ENABLED": {
  8. "type": "boolean",
  9. "default": true,
  10. "x-aliases": ["SAVE_ACCESSIBILITY", "USE_ACCESSIBILITY"],
  11. "description": "Enable accessibility tree capture"
  12. },
  13. "ACCESSIBILITY_TIMEOUT": {
  14. "type": "integer",
  15. "default": 30,
  16. "minimum": 5,
  17. "x-fallback": "TIMEOUT",
  18. "description": "Timeout for accessibility capture in seconds"
  19. }
  20. }
  21. }