This is a Browser Action API.
_execute can be used to run batch or shell scripts.
It internally does a java Runtime.exec()
Syntax:
_execute(command, isSynchronous)
The parameters are:
- command: command to be executed
- isSynchronous: true or false.
Set this to true if you want the script to wait till the process returns. Setting this to false will execute the command in a thread and continue.
Example:
_execute("loadFromDB.bat");