forked from MyriaCore/ulauncher-emoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
78 lines (78 loc) · 2.29 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
77
78
{
"required_api_version": "^2.0.0",
"name": "Emoji",
"description": "Emoji extension",
"developer_name": "Aleksandr Gornostal",
"icon": "images/icon.png",
"preferences": [
{
"id": "emoji_kw",
"type": "keyword",
"name": "Emoji",
"default_value": "em"
},
{
"id": "action",
"type": "select",
"name": "Action",
"description": "Choose the action to perform after picking an emoji",
"default_value": "Auto-Insert",
"options": [
"Auto-Insert",
"Copy"
]
},
{
"id": "emoji_style",
"type": "select",
"name": "Emoji Style",
"description": "Choose the style of emojis you prefer",
"default_value": "twemoji",
"options": [
"apple",
"twemoji",
"noto",
"blobmoji"
]
},
{
"id": "fallback_emoji_style",
"type": "select",
"name": "Fallback Emoji Style",
"description": "Choose the style of emojis you prefer, if your first pick isn't available",
"default_value": "noto",
"options": [
"apple",
"twemoji",
"noto",
"blobmoji"
]
},
{
"id": "display_char",
"type": "select",
"name": "Display System Emoji",
"description": "If yes, emojis in the search menu will appear to the right of their names, and will be rendered by the system's font.",
"default_value": "no",
"options": [
"no",
"yes"
]
},
{
"id": "skin_tone",
"type": "select",
"name": "Skin Tone",
"description": "Choose the skin tone for your emojis",
"default_value": "👌 default",
"options": [
"👌 default",
"👌🏻 light",
"👌🏼 medium-light",
"👌🏽 medium",
"👌🏾 medium-dark",
"👌🏿 dark"
]
}
]
}