config.json 542 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. "HEADERS_ENABLED": {
  8. "type": "boolean",
  9. "default": true,
  10. "x-aliases": ["SAVE_HEADERS", "USE_HEADERS"],
  11. "description": "Enable HTTP headers capture"
  12. },
  13. "HEADERS_TIMEOUT": {
  14. "type": "integer",
  15. "default": 30,
  16. "minimum": 5,
  17. "x-fallback": "TIMEOUT",
  18. "description": "Timeout for headers capture in seconds"
  19. }
  20. }
  21. }