| 12345678910111213141516171819202122232425262728293031 |
- {
- "$schema": "../gen/schemas/desktop-schema.json",
- "identifier": "default",
- "description": "Capability for the main window",
- "windows": ["main"],
- "permissions": [
- "core:default",
- "core:window:allow-create",
- "core:window:allow-set-title",
- "core:webview:allow-create-webview-window",
- "opener:default",
- "dialog:default",
- "store:default",
- "updater:default",
- {
- "identifier": "http:default",
- "allow": [
- { "url": "http://*" },
- { "url": "http://*/*" },
- { "url": "http://*:*" },
- { "url": "http://*:*/*" },
- { "url": "http://**" },
- { "url": "https://*" },
- { "url": "https://*/*" },
- { "url": "https://*:*" },
- { "url": "https://*:*/*" },
- { "url": "https://**" }
- ]
- }
- ]
- }
|