├── 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 | ![Screenshot](/screenshot.png?raw=true) 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 | 6 | 7 | 30d26041-7292-4d19-bd05-32c541f3c381 8 | 1.0.0 9 | Zoomer Analytics GmbH 10 | en-US 11 | 12 | 13 | 14 | 15 | 16 | 17 | https://xlwings.github.io/officejs-helloworld/ 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | ReadWriteDocument 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 |