-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
33 lines (33 loc) · 992 Bytes
/
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
{
"short_name": "Kotlin",
"name": "Kotlin Playground",
"description": "Enable a Kotlin Playground",
"maintainer": {
"name": "Alexander Prendota",
"email": "alexander.prendotal@jetbrains.com"
},
"version": "0.1.0",
"sandbox": "allow-presentation allow-scripts allow-same-origin",
"configurationExamples": [
{
"name": "Hello world!",
"configuration": {
"code": "fun main(args: Array<String>) {\n println(\"Hello world\")\n}",
"platform": "java",
"link": "https://kotlinlang.org/",
"task": "We declare a package-level function main which returns Unit and takes\nan Array of strings as a parameter. Note that semicolons are optional.",
"head": "Hello World!"
}
}
],
"authorizations": {},
"actionTypes": ["GET_SESSION_CONFIGURATION", "SET_HEIGHT"],
"macros": [],
"accessibility": {
"mobileCompatibility": {
"supportsTouch": true,
"minHeightPx": 0,
"minWidthPx": 0
}
}
}