ChatGPT-Next-Web/src-tauri/capabilities/main.json
2024-09-26 15:07:18 +08:00

30 lines
623 B
JSON

{
"identifier": "main",
"description": "permissions for desktop app",
"local": true,
"windows": ["main"],
"permissions": [
"core:default",
"core:window:allow-start-dragging",
"core:window:allow-maximize",
"clipboard-manager:allow-write-text",
"fs:default",
"fs:allow-exists",
{
"identifier": "http:default",
"allow": [
{
"url": "https://*"
},
{
"url": "http://*"
}
]
},
"notification:default",
"shell:allow-open",
"window-state:allow-restore-state",
"window-state:allow-save-window-state"
]
}