config.json 660 B

1234567891011121314151617181920212223242526
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "type": "object",
  4. "additionalProperties": false,
  5. "properties": {
  6. "FAVICON_ENABLED": {
  7. "type": "boolean",
  8. "default": true,
  9. "x-aliases": ["SAVE_FAVICON", "USE_FAVICON"],
  10. "description": "Enable favicon downloading"
  11. },
  12. "FAVICON_TIMEOUT": {
  13. "type": "integer",
  14. "default": 30,
  15. "minimum": 5,
  16. "x-fallback": "TIMEOUT",
  17. "description": "Timeout for favicon fetch in seconds"
  18. },
  19. "FAVICON_USER_AGENT": {
  20. "type": "string",
  21. "default": "",
  22. "x-fallback": "USER_AGENT",
  23. "description": "User agent string"
  24. }
  25. }
  26. }