mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-06-10 14:13:55 +02:00
f209b2f23c
* chore(deps): update tauri monorepo to v2.6.0 * Regenerate api-iife.js * Bump rust tauri * Tweak all examples to match the new features * Bump workspace min tauri version * Bump `@tauri-apps/api` to ^2.6 * Add change file * Update lock file * missing `"` --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Tony <legendmastertony@gmail.com>
174 lines
1.9 KiB
Markdown
174 lines
1.9 KiB
Markdown
## Default Permission
|
|
|
|
No features are enabled by default, as we believe
|
|
the clipboard can be inherently dangerous and it is
|
|
application specific if read and/or write access is needed.
|
|
|
|
Clipboard interaction needs to be explicitly enabled.
|
|
|
|
## Permission Table
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Identifier</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`clipboard-manager:allow-clear`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the clear command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`clipboard-manager:deny-clear`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the clear command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`clipboard-manager:allow-read-image`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the read_image command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`clipboard-manager:deny-read-image`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the read_image command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`clipboard-manager:allow-read-text`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the read_text command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`clipboard-manager:deny-read-text`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the read_text command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`clipboard-manager:allow-write-html`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the write_html command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`clipboard-manager:deny-write-html`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the write_html command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`clipboard-manager:allow-write-image`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the write_image command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`clipboard-manager:deny-write-image`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the write_image command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`clipboard-manager:allow-write-text`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the write_text command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`clipboard-manager:deny-write-text`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the write_text command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|