Google Chrome Automation Executor
npm install flowautoGoogle Chrome Automation Executor
The task flow configuration data is more troublesome, so a desktop client is provided for free arrangement.
app
```
npm install -g flowauto
``
flowauto --userDataDir ./userDataDir --filepath ./flow.json --logpath ./logs
You can arrange tasks using a desktop application, export them as a JSON file, and then execute them with flowauto.
Example:
``
{
"task": []
}
When arranging tasks, if you choose to input parameters, you need to record the parameter names. While executing flowauto, pass these parameters using the --param1 value1 --param2 value2 format.
Example:
``
flowauto --userDataDir ./userDataDir --filepath ./flow.json --param1 value1 --param2 value2
`
const flowauto = require('flowauto/task.run')
flowauto({
userDataDir,
filepath,
logpath
})
`
✅ Support 2025-06-14
1. Custom Hotkey Trigger
2. Task Parameters:
• --taskparamfile: JSON file path
``
--taskparamfile ./taskparam.json `
• --taskparam: JSON string content
--taskparam "{\"FriendName\":\"霜月初十\",\"Message\":\"Happy New Year\"}"
``