Use Adobe's Extension Manager command line tool in node.js.
$ npm install exman
const exman = require('exman');
exman.install(path.join(__dirname, 'com.domain.extension.zxp'))
.then(() => console.log('Extension installed!'))
.catch((stderr) => console.warn(`Failed to install: ${stderr.toString()}`))
Command | Description | Required Argument |
---|---|---|
install |
Install an extension | Path to the extension's .zxp file |
remove |
Remove an extension | The extension name (bundle identifier) |
enable |
Enable an extension | The extension name (bundle identifier) |
disable |
Disable an extension | The extension name (bundle identifier) |
update |
Update an extension | The extension name (bundle identifier) |