-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmanifest.json
53 lines (53 loc) · 1.25 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
{
"background": {
"service_worker": "dist/priv/background.mjs",
"scripts": ["dist/priv/background.mjs"],
"type": "module"
},
"action": {
"default_icon": "src/img/terminal-disabled-16.png",
"default_title": "OdooTerminal (CTRL + ,)"
},
"browser_specific_settings": {
"gecko": {
"id": "{cdfbfc50-7cbf-4044-a6fb-cdef5056605c}"
}
},
"content_scripts": [
{
"js": ["dist/priv/content_script.js"],
"matches": ["https://*/*", "http://*/*"],
"run_at": "document_idle"
}
],
"description": "__MSG_extensionDescription__",
"icons": {
"16": "src/img/terminal-16.png",
"32": "src/img/terminal-32.png",
"48": "src/img/terminal-48.png",
"128": "src/img/terminal-128.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Comma"
}
}
},
"manifest_version": 3,
"default_locale": "en",
"name": "OdooTerminal",
"options_ui": {
"page": "src/html/options.html",
"open_in_tab": true
},
"permissions": ["activeTab", "storage"],
"short_name": "OdooTerminal",
"version": "11.7.2",
"web_accessible_resources": [
{
"resources": ["dist/pub/**", "_locales/**/translation.json"],
"matches": ["<all_urls>"]
}
]
}