mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-05-11 12:37:34 +02:00
4dd5c51436
* chore(deps): update tauri monorepo to v2.4.1 * Update tauri and regenerate command ref and schema --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Tony <legendmastertony@gmail.com>
112 lines
1.4 KiB
Markdown
112 lines
1.4 KiB
Markdown
## Default Permission
|
|
|
|
This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application
|
|
as well as reveal file in directories using default file explorer
|
|
|
|
#### This default permission set includes the following:
|
|
|
|
- `allow-open-url`
|
|
- `allow-reveal-item-in-dir`
|
|
- `allow-default-urls`
|
|
|
|
## Permission Table
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Identifier</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`opener:allow-default-urls`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`opener:allow-open-path`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the open_path command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`opener:deny-open-path`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the open_path command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`opener:allow-open-url`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the open_url command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`opener:deny-open-url`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the open_url command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`opener:allow-reveal-item-in-dir`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the reveal_item_in_dir command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`opener:deny-reveal-item-in-dir`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the reveal_item_in_dir command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|