You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Add the plugin to Excel by following the [sideloading instructions for your platform](https://learn.microsoft.com/en-us/office/dev/add-ins/testing/test-debug-office-add-ins#sideload-an-office-add-in-for-testing).
6
+
2. Start typing the following in a formula bar `OAI.` and you should see the formulas associated with this plugin.
7
+
3. For a full description of each function, see `src/functions.json`.
8
+
9
+
## File descriptions
10
+
11
+
| Path | Description |
12
+
| ---- | ----------- |
13
+
| assets/*.png | Icons of various sizes |
14
+
| index.html | Root page loaded in the background during plugin startup. |
15
+
| manifest-local.xml | A version of manifest.xml which references https://localhost:3000/ for plugin development use. |
16
+
| manifest.xml | Configures where the plugin should be loaded from and what features it will make use of. |
17
+
| package[-lock].json | Lists NPM dependencies. Used only during plugin development. |
18
+
| functions.js | The JavaScript functions which implement the formulas. |
19
+
| functions.json | The metadata which details each formula and references its implementation. |
20
+
| README.md | This file. |
21
+
22
+
## Plugin development
23
+
24
+
1. Install the npm dependencies (`npm i`)
25
+
2. Follow these instructions to [generate an cert-key pair](https://github.com/http-party/http-server#tlsssl).
26
+
3. Run the local server (`npm start`).
27
+
4. Navigate to the [root](https://localhost:3000/) in your browser and temporarily trust the newly created cert-key pair.
28
+
4. Open a spreadsheet in Excel on the web and append the following query string parameters
0 commit comments