Skip to content
/ exman Public

Javascript wrapper around Adobe's Extension Manager command line tool

License

Notifications You must be signed in to change notification settings

bhstahl/exman

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm package

Use Adobe's Extension Manager command line tool in node.js.

Installation

$ npm install exman

Usage

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()}`))

Module API

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)

About

Javascript wrapper around Adobe's Extension Manager command line tool

Resources

License

Stars

Watchers

Forks

Packages

No packages published