default.json 564 B

12345678910111213141516171819202122232425
  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-hide",
  22. "core:window:allow-set-focus",
  23. "core:window:allow-set-always-on-top"
  24. ]
  25. }