mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-12-18 18:04:28 +08:00
修改输出结果相关函数及界面
This commit is contained in:
@@ -41,22 +41,22 @@ const outputTypes = {
|
||||
label: "复制到剪贴板",
|
||||
icon: "content_paste",
|
||||
outPlugin: true,
|
||||
action: result => window.copyTo(result)
|
||||
action: result => window.utools.copyText(result)
|
||||
},
|
||||
send: {
|
||||
name: "send",
|
||||
label: "发送到活动窗口",
|
||||
icon: "web_asset",
|
||||
outPlugin: true,
|
||||
action: result => window.send(result)
|
||||
action: result => window.utools.hideMainWindowTypeString(result)
|
||||
},
|
||||
notice: {
|
||||
name: "notice",
|
||||
label: "发送系统通知",
|
||||
icon: "sms",
|
||||
outPlugin: true,
|
||||
action: result => window.message(result)
|
||||
action: result => window.utools.showNotification(result)
|
||||
},
|
||||
};
|
||||
|
||||
export default outputTypes
|
||||
export default outputTypes
|
||||
|
||||
Reference in New Issue
Block a user