-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule.json
68 lines (68 loc) · 1.43 KB
/
module.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "chat-tabs",
"title": "Customizable Chat Tabs",
"description": "Splits the Chatlog into tabs that can be customized.",
"version": "1.0",
"compatibility": {
"minimum": 10,
"verified": 11
},
"authors": [
{
"name": "Matheus Clemente",
"url": "https://github.com/mclemente",
"discord": "mclemente#5524",
"github": "mclemente"
}
],
"esmodules": ["./chat-tabs.js"],
"scripts": [],
"styles": ["/styles/chat-tabs.css"],
"languages": [
{
"lang": "en",
"name": "English",
"path": "languages/en.json"
},
{
"lang": "es",
"name": "Español",
"path": "languages/es.json"
},
{
"lang": "cn",
"name": "中文",
"path": "languages/cn.json"
},
{
"lang": "zh-tw",
"name": "正體中文",
"path": "languages/zh-tw.json"
},
{
"lang": "de",
"name": "Deutsch",
"path": "languages/de.json"
},
{
"lang": "ko",
"name": "Korean",
"path": "languages/ko.json"
}
],
"url": "https://github.com/mclemente/fvtt-chat-tabs",
"manifest": "https://github.com/mclemente/fvtt-chat-tabs/releases/latest/download/module.json",
"download": "https://github.com/mclemente/fvtt-chat-tabs/releases/latest/download/module.zip",
"relationships": {
"requires": [
{
"id": "lib-wrapper",
"type": "module",
"manifest": "https://github.com/ruipin/fvtt-lib-wrapper/releases/latest/download/module.json",
"compatibility": {
"verified": "1.12.11.0"
}
}
]
}
}