config.json 525 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. "SSL_ENABLED": {
  8. "type": "boolean",
  9. "default": true,
  10. "x-aliases": ["SAVE_SSL", "USE_SSL"],
  11. "description": "Enable SSL certificate capture"
  12. },
  13. "SSL_TIMEOUT": {
  14. "type": "integer",
  15. "default": 30,
  16. "minimum": 5,
  17. "x-fallback": "TIMEOUT",
  18. "description": "Timeout for SSL capture in seconds"
  19. }
  20. }
  21. }