123456789101112131415161718192021222324 |
- {
- "$schema": "../gen/schemas/desktop-schema.json",
- "identifier": "default",
- "description": "Capability for the main window",
- "windows": ["main", "test"],
- "permissions": [
- {
- "identifier": "http:default",
- "allow": [
- {
- "url": "https://*.tauri.app"
- },
- {
- "url": "https://*.microsoft.*"
- }
- ]
- },
- "core:default",
- "shell:allow-open",
- "core:window:allow-close",
- "core:window:allow-set-focus",
- "core:window:allow-set-always-on-top"
- ]
- }
|