-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
76 lines (76 loc) · 1.7 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"required_api_version": "^2.0.0",
"name": "Jotoba",
"description": "Japanese dictionary extension",
"developer_name": "Jojii",
"icon": "images/icon.png",
"options": {
"query_debounce": 0.1
},
"preferences": [
{
"id": "kw",
"type": "keyword",
"name": "Jotoba",
"description": "Jotoba keywoard",
"default_value": "j"
},
{
"id": "word_kw",
"type": "keyword",
"name": "WordSearch",
"description": "Word search keyword",
"default_value": "jw"
},
{
"id": "kanji_kw",
"type": "keyword",
"name": "KanjiSearch",
"description": "Kanji search keyword",
"default_value": "jk"
},
{
"id": "sentence_kw",
"type": "keyword",
"name": "SentenceSearch",
"description": "Sentence search keyword",
"default_value": "js"
},
{
"id": "name_kw",
"type": "keyword",
"name": "NameSearch",
"description": "Name search keyword",
"default_value": "jn"
},
{
"id": "language",
"type": "select",
"name": "Language",
"description": "Search language",
"default_value": "en-US",
"options": [
{"value":"en-US","text":"English"},
{"value":"de-DE","text":"German"}
]
},
{
"id": "show_en",
"type": "select",
"name": "Show English",
"description": "Show english results",
"default_value": "0",
"options": [
{"value":"0","text":"No"},
{"value":"1","text":"Yes"}
]
},
{
"id": "res_limit",
"type": "input",
"name": "Result count",
"description": "Amount of results to show",
"default_value": "10"
}
]
}