Do what you want quickly!
HK.closeMonitor() - 关闭显示器
HK.quit() - 退出程序
HK.message(text) - 弹出提示框
HK.exec(cmd, param) - 执行程序/命令
HK.shell(cmd) - 执行cmd命令
HK.version() - 显示程序版本号
HKStore.configs - 临时存储
HKStore.setConfig(key, val) - 写入临时变量
HKStore.datas - 持久化存储(读取文件QuicDone.dat)
HKStore.setData(key, val) - 写入持久化变量(即将数据存入文件QuicDone.dat中)
{
"log": true, // Output log file or not.
"The key what you want to handle.": "The script with javascript. You could just give a path to point to a js file."
}{
"log": true,
"WIN + C": "HK.exec(\"calc\")",
"WIN + N": "HK.exec(\"notepad\")",
"ALT + CTRL + M": "HK.closeMonitor()",
"ALT + CTRL + O": "HK.message(\"西子,哦嗨哟~~\")",
"ALT + CTRL + SHIFT + V": "HK.version()",
"ALT + CTRL + SHIFT + WIN + ESC": "HK.quit()"
}