config.json 561 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. "STATICFILE_ENABLED": {
  8. "type": "boolean",
  9. "default": true,
  10. "x-aliases": ["SAVE_STATICFILE", "USE_STATICFILE"],
  11. "description": "Enable static file detection"
  12. },
  13. "STATICFILE_TIMEOUT": {
  14. "type": "integer",
  15. "default": 30,
  16. "minimum": 5,
  17. "x-fallback": "TIMEOUT",
  18. "description": "Timeout for static file detection in seconds"
  19. }
  20. }
  21. }