├── README.md
├── icons
├── icon-16.png
├── icon-32.png
├── icon-64.png
└── icon-80.png
├── manifest-officejs-hello.xml
├── screenshot.png
└── taskpane.html
/README.md:
--------------------------------------------------------------------------------
1 | # The simplest Office.js add-in for Microsoft Excel
2 |
3 | 
4 |
5 | This is the simplest possible Office.js add-in for Microsoft Excel (task pane only). It only consists of two files (and an icon in a few sizes):
6 |
7 | * `manifest-officejs-hello.xml`
8 | * `taskpane.html`
9 |
10 | The HTML file is being served by [GitHub pages](https://docs.github.com/en/pages/quickstart).
11 |
12 | You can play around with the add-in by sideloading `manifest-officejs-hello.xml` according to the [office.js docs](https://learn.microsoft.com/en-us/office/dev/add-ins/testing/test-debug-office-add-ins#sideload-an-office-add-in-for-testing).
13 |
14 | Note that this sample uses the raw Excel JavaScript API (no Python/xlwings).
15 |
--------------------------------------------------------------------------------
/icons/icon-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xlwings/officejs-helloworld/8cf3a9adf843f70ee7895c3304772300fa8785f2/icons/icon-16.png
--------------------------------------------------------------------------------
/icons/icon-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xlwings/officejs-helloworld/8cf3a9adf843f70ee7895c3304772300fa8785f2/icons/icon-32.png
--------------------------------------------------------------------------------
/icons/icon-64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xlwings/officejs-helloworld/8cf3a9adf843f70ee7895c3304772300fa8785f2/icons/icon-64.png
--------------------------------------------------------------------------------
/icons/icon-80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xlwings/officejs-helloworld/8cf3a9adf843f70ee7895c3304772300fa8785f2/icons/icon-80.png
--------------------------------------------------------------------------------
/manifest-officejs-hello.xml:
--------------------------------------------------------------------------------
1 |
2 |
Hit the Run button to paint the selected cells yellow and write the address to cell A1!
14 | 15 | 37 | 38 | 39 | 40 | --------------------------------------------------------------------------------