mirror of
https://github.com/aiclientproxy/proxycast.git
synced 2026-09-24 23:10:56 +08:00
tauri-plugin-deep-link does not register permissions on Windows or Linux (both use CLI args for deep links). Only macOS uses the event-based deep link system that requires permissions.
11 lines
232 B
JSON
11 lines
232 B
JSON
{
|
||
"$schema": "../gen/schemas/desktop-schema.json",
|
||
"identifier": "deep-link",
|
||
"description": "Deep link 权限(仅 macOS)",
|
||
"windows": ["main"],
|
||
"platforms": ["macOS"],
|
||
"permissions": [
|
||
"deep-link:default"
|
||
]
|
||
}
|