mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-12-15 23:54:35 +08:00
将发送文本从消息通知移到模拟操作,增加模拟粘贴选项
This commit is contained in:
11
plugin/lib/quickcomposer/simulate/sendText.js
Normal file
11
plugin/lib/quickcomposer/simulate/sendText.js
Normal file
@@ -0,0 +1,11 @@
|
||||
const sendText = (text, simulateCopy = false) => {
|
||||
if (simulateCopy) {
|
||||
window.utools.copyText(text);
|
||||
quickcommand.sleep(200);
|
||||
quickcommand.simulatePaste();
|
||||
} else {
|
||||
window.utools.hideMainWindowTypeString(text);
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = sendText;
|
||||
Reference in New Issue
Block a user