-
Notifications
You must be signed in to change notification settings - Fork 348
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (38 loc) · 864 Bytes
/
manifest.json
File metadata and controls
38 lines (38 loc) · 864 Bytes
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
{
"name": "Trivia",
"id": "1022628489809897477",
"api": "1.0.0",
"main": "code.js",
"ui": "ui.html",
"editorType": ["figma", "figjam"],
"parameters": [
{
"name": "Number",
"key": "number",
"description": "Number of questions (max 50)",
"allowFreeform": true,
"optional": true
},
{
"name": "Category",
"key": "category",
"description": "What knowledge do you want to put to the test?",
"optional": true
},
{
"name": "Difficulty",
"key": "difficulty",
"description": "How difficult do you want these questions to be?",
"optional": true
},
{
"name": "Type",
"key": "type",
"description": "Multiple choice or true/false",
"optional": true
}
],
"networkAccess": {
"allowedDomains": ["https://opentdb.com/"]
}
}