mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-06-10 14:13:55 +02:00
149 lines
1.7 KiB
Markdown
149 lines
1.7 KiB
Markdown
## Default Permission
|
|
|
|
No features are enabled by default, as we believe
|
|
the shortcuts can be inherently dangerous and it is
|
|
application specific if specific shortcuts should be
|
|
registered or unregistered.
|
|
|
|
|
|
|
|
## Permission Table
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Identifier</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`global-shortcut:allow-is-registered`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the is_registered command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`global-shortcut:deny-is-registered`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the is_registered command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`global-shortcut:allow-register`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the register command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`global-shortcut:deny-register`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the register command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`global-shortcut:allow-register-all`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the register_all command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`global-shortcut:deny-register-all`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the register_all command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`global-shortcut:allow-unregister`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the unregister command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`global-shortcut:deny-unregister`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the unregister command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`global-shortcut:allow-unregister-all`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the unregister_all command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`global-shortcut:deny-unregister-all`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the unregister_all command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|