This extension is used to display actual wc state data recieved from floWControl server. Built extension is available in Chrome store.
- Notification server url
- example value:
ws://server_address/notifier
- example value:
- JSON schema to map server response into visible representation
- example:
{ "1": {"order": 1, "name": "WC 1"}, "2": {"order": 3, "name": "WC 2"}, "3": {"order": 2, "name": "WC 3"} }
- key corresponds to wc key from server. Value contains order you want wcs to be displayed in and a custom name for a certain wc to be displayed in extension popup.
- Install Yarn in scope global.
$ npm install -g yarn
- Install dependencies.
$ cd flowcontrol-browser-extension/ && yarn
- Start project - Watch files in project and rebuild if any file changed.
yarn start
- Build for production
yarn build
- Visit
chrome://extensions/
in Chrome; - Enable the Developer mode;
- Click on Load unpacked extension;
- Select the folder
flowcontrol-browser-extension/extension
or the folder name you changed.