-
Notifications
You must be signed in to change notification settings - Fork 953
Expand file tree
/
Copy pathsample-config.json
More file actions
150 lines (150 loc) · 4.92 KB
/
Copy pathsample-config.json
File metadata and controls
150 lines (150 loc) · 4.92 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"filterOptions": {
"capabilities": [
"Word",
"Excel"
],
"languages": [
"TypeScript",
"JavaScript"
],
"technologies": [
"Custom Functions",
"Web Workers",
"Synchronous Custom Functions"
]
},
"samples": [
{
"id": "excel-get-started-with-dev-kit",
"onboardDate": "2024-11-01",
"title": "Excel - Get started with the Office Add-ins Development Kit",
"description": "This sample demonstrates how to create a basic Excel add-in with a task pane that uses JavaScript.",
"types": [
"Excel"
],
"tags": [
"JavaScript",
"Get Started",
"Excel"
],
"thumbnailPath": "assets/thumbnail.png",
"suggested": false
},
{
"id": "word-get-started-with-dev-kit",
"onboardDate": "2024-11-01",
"title": "Word - Get started with the Office Add-ins Development Kit ",
"description": "This sample demonstrates how to create a basic Word add-in with a task pane that uses JavaScript.",
"types": [
"Word"
],
"tags": [
"JavaScript",
"Get Started",
"Word"
],
"thumbnailPath": "assets/thumbnail.png",
"suggested": false
},
{
"id": "excel-add-in-chart-analyze-data",
"onboardDate": "2024-11-11",
"title": "Analyze Excel data with charts",
"description": "This sample Excel add-in shows how to use charts to help analyze data.",
"types": [
"Excel"
],
"tags": [
"TypeScript",
"Chart",
"Excel"
],
"thumbnailPath": "assets/thumbnail.png",
"suggested": false
},
{
"id": "excel-add-in-shape-dashboard",
"onboardDate": "2024-11-11",
"title": "Create a dashboard in Excel with shapes",
"description": "The sample Excel add-in uses shapes to create a dashboard in the workbook.",
"types": [
"Excel"
],
"tags": [
"TypeScript",
"Shape",
"Excel"
],
"thumbnailPath": "assets/thumbnail.png",
"suggested": false
},
{
"id": "excel-add-in-custom-functions-using-web-workers",
"onboardDate": "2024-11-11",
"title": "Build asynchronous custom functions in Excel with web workers",
"description": "Use web workers in custom Excel functions to prevent your Office Add-in UI from being blocked.",
"types": [
"Excel"
],
"tags": [
"JavaScript",
"Custom Functions",
"Excel",
"Web Workers"
],
"thumbnailPath": "assets/thumbnail.png",
"suggested": false
},
{
"id": "excel-add-in-mail-merge",
"onboardDate": "2024-11-11",
"title": "Send emails from Excel with Microsoft Graph",
"description": "This sample Office Add-in sends emails from inside Excel using the Microsoft Graph JavaScript SDK.",
"types": [
"Excel"
],
"tags": [
"JavaScript",
"Excel",
"SSO",
"Graph"
],
"thumbnailPath": "assets/thumbnail.png",
"suggested": false
},
{
"id": "word-ai-generated-content",
"onboardDate": "2024-11-11",
"title": "Insert AI-generated content in a document",
"description": "Insert AI-generated or preset content into a Word document from an add-in.",
"types": [
"Word"
],
"tags": [
"TypeScript",
"Word",
"React"
],
"thumbnailPath": "assets/thumbnail.png",
"suggested": false
},
{
"id": "excel-custom-functions-sync",
"onboardDate": "2026-03-19",
"title": "Create synchronous custom functions in Excel",
"description": "A synchronous custom function that reads a cell value in tandem with Excel's calculation process using @supportSync.",
"types": [
"Excel"
],
"tags": [
"TypeScript",
"Custom Functions",
"Excel",
"Synchronous Custom Functions"
],
"thumbnailPath": "assets/thumbnail.png",
"suggested": false
}
]
}