forked from Sunbird-Knowlg/sunbird-content-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (45 loc) · 1.22 KB
/
manifest.json
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
{
"id": "org.ekstep.image",
"ver": "1.0",
"shortId": "image",
"displayName": "Image",
"author": "Santhosh Vasabhaktula",
"title": "Image Plugin",
"description": "",
"publishedDate": "",
"editor": {
"main": "editor/plugin.js",
"help": {
"src": "editor/help.md",
"dataType": "text"
},
"dependencies": [
{"type": "plugin", "plugin": "org.ekstep.assetbrowser", "ver": "1.0"}
],
"menu": [{
"id": "image",
"category": "main",
"type": "icon",
"toolTip": "Add Image",
"title": "Image",
"iconClass": "fa fa-picture-o",
"onclick": {
"id": "org.ekstep.image:assetbrowser:open"
}
}],
"behaviour": {
"rotatable": true
},
"configManifest": [{
"propertyName": "imagebrowser",
"title": "Image Browser",
"description": "Choose a from the browser",
"dataType": "browser",
"required": true,
"onclick":{
"id": "org.ekstep.assetbrowser:show",
"type": "image"
}
}]
}
}