blob: 44f490ddbc3ac4ed5c8cbd22e5b606718d8ba296 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Junction
Connect people through any URL
## Extension
First, make sure to build the plugin. From the extension's root you can call:
```
$ pnpm install && pnpm build
```
### Testing on Firefox
In order to test on firefox, first go to `about:debugging`, then click
on the `This Firefox` option. Then click on `Load Temporary Add-On` and
point the browser to the `extension/manifest.json` file.
This will enable the extension and will allow you to use the inspector to debug.
### Testing on Chrome
In order to test on chrome, first go to `chrome://extensions/`. Make sure
`Developer mode` is enabled. Then click `Load Unpacked` and point the browser
to the `extension` directory.
### Packaging
The makefile includes scripts to create a distributable package. `make package`
should generate all supported files in the `build/` directory.
|