Clear the clipboard of contents
The clipboard type to clear
Read the clipboard in HTML format
The clipboard type to read
OptionalRead the clipboard in text format
The clipboard type to read
OptionalWrite to the clipboard in HTML format
The html content to place on the clipboard
The clipboard type to clear
OptionalWrite to the clipboard in text format
The content to place on the clipboard
The clipboard type to write
OptionalGenerated using TypeDoc
See Electron Documentation for clipboard for details
Example
'use strict' module.exports = (pluginContext) => { const clipboard = pluginContext.clipboard; function startup() { ... } function search(query, res) { ... } function execute(id, payload, extra) { clipboard.readText().then((result) => { console.log('Text from clipboard: ' + result); }); } return { startup, search, execute }; };