default.json 534 B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "../gen/schemas/desktop-schema.json",
  3. "identifier": "default",
  4. "description": "Capability for the main window",
  5. "windows": ["main", "test"],
  6. "permissions": [
  7. {
  8. "identifier": "http:default",
  9. "allow": [
  10. {
  11. "url": "https://*.tauri.app"
  12. },
  13. {
  14. "url": "https://*.microsoft.*"
  15. }
  16. ]
  17. },
  18. "core:default",
  19. "shell:allow-open",
  20. "core:window:allow-close",
  21. "core:window:allow-set-focus",
  22. "core:window:allow-set-always-on-top"
  23. ]
  24. }