-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
39 lines (39 loc) · 1.42 KB
/
manifest.json
File metadata and controls
39 lines (39 loc) · 1.42 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
{
"name": "@deskpro-apps/iframe",
"title": "IFrame",
"description": "Embed an IFrame in the global component so you can display any website or web app.",
"version": "1.0.31",
"scope": "agent",
"hasDevMode": true,
"isSingleInstall": false,
"serveUrl": "https://apps-cdn.deskpro-service.com/__name__/__version__",
"targets": [{ "target": "global", "entrypoint": "index.html" }],
"settings": {
"iframe_url": {
"title": "IFrame URL",
"description": "The URL to load in the iframe (must be https). Some URLs do not support being accessed via an iframe, so when you get the error <website> refused to connect, it means it can't be loaded in an iframe.",
"type": "string",
"validationPattern": "^https:\\/\\/[a-zA-Z0-9\\-\\.]+\\.[a-zA-Z]{2,}(\\/\\S*)?$",
"isRequired": true,
"isBackendOnly": false
},
"iframe_height_pixels": {
"title": "Column Height",
"description": "The height of the column in which the iframe will be displayed",
"validationPattern": "^\\d+$",
"type": "string",
"default": "420",
"isRequired": true,
"isBackendOnly": false
},
"iframe_width_pixels": {
"title": "Column Width",
"description": "The width of the column in which the iframe will be displayed",
"validationPattern": "^\\d+$",
"type": "string",
"default": "420",
"isRequired": true,
"isBackendOnly": false
}
}
}