33 lines
734 B
Markdown
33 lines
734 B
Markdown
# Platypush browser extension
|
|
|
|
This extension allows you to run Platypush commands on remote hosts as well as
|
|
custom scripts, build custom actions as scripts that can access both the browser
|
|
API and Platypush API, and attach hooks to events generated by remote Platypush systems.
|
|
|
|
Article on the motivations behind this extensions and some examples to get started: https://medium.com/@automationguru/one-browser-extension-to-rule-them-all-3118dc7f9c9b
|
|
|
|
## Installation
|
|
|
|
Install the dependencies:
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
Dev installation (requires npm+Vue cli tools):
|
|
|
|
```bash
|
|
npm run build:dev
|
|
```
|
|
|
|
Production installation (requires npm):
|
|
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
Generate the extension .zip file:
|
|
|
|
```bash
|
|
npm run build-zip
|
|
```
|