We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Each extension should be able to register a command as a share_target.
share_target
{ "title": "My Command", "share_target": { "command": "sunbeam", "params": { "url": "link" } } "commands": [ { "name": "command", "mode": "view", "title": "Save Link", "params": [{ "name": "link", "type": "string" }] } ] }
Then from another extension can use a share action:
{ "title": "Share Link", "onAction": { "type": "share", "url": "https://github.com" } }
causing all commands accepting a link to be proposed.
The text was updated successfully, but these errors were encountered:
inspired by https://developer.mozilla.org/en-US/docs/Web/Manifest/share_target
Sorry, something went wrong.
command
No branches or pull requests
Each extension should be able to register a command as a
share_target
.Then from another extension can use a share action:
causing all commands accepting a link to be proposed.
The text was updated successfully, but these errors were encountered: