FastMushroom

Results 3 issues of FastMushroom

### Is your feature request related to a problem? Please describe. The current version sends screenshots from the clipboard in BMP format, but some software doesn't support BMP format. ###...

enhancement

目前有些脚本,想在打开应用时自动启用,离开应用时自动暂停,循环检测当前界面好像会很耗电,想通过无障碍监听实现

Doubt :grey_question: 疑惑

比如启动下面的脚本,控制台会正常输出,但是启动任意一个新脚本(即使为空脚本),控制台就不打印监听日志了,旧脚本在任务界面还显示运行中 ```js console.show() auto(); auto.registerEvent("WINDOW_STATE_CHANGED", function (event) { console.log("窗口变化:"+event.packageName+"\n"+event.className); }); events.on('exit', function () { auto.removeEvent("WINDOW_STATE_CHANGED"); toastLog("退出监听") }); setInterval(function () { }, 1000); ```