Build Your First Command
Create Command
Do Something with the Command
Make Your Command Open a URL
const response = {
action: {
type: "open-url",
url: "https://slapdash.com/"
}
}
// Print the response as JSON string
console.log(JSON.stringify(response));Make Your Command Add Some Text to Your Clipboard
Last updated