default.json 497 B

123456789101112131415161718192021222324252627
  1. {
  2. "$schema": "../gen/schemas/desktop-schema.json",
  3. "identifier": "default",
  4. "description": "Capability for the main window",
  5. "windows": [
  6. "main"
  7. ],
  8. "permissions": [
  9. "core:default",
  10. "opener:default",
  11. "sql:default",
  12. "sql:allow-execute",
  13. "store:default",
  14. {
  15. "identifier": "http:default",
  16. "allow": [
  17. "http://**",
  18. "https://**"
  19. ],
  20. "deny": [
  21. "http://**",
  22. "https://**"
  23. ]
  24. },
  25. "upload:default"
  26. ]
  27. }