-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (44 loc) · 1.02 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
{
"manifest_version": 2,
"name": "__MSG_extensionTitle__",
"version": "0.5.4",
"default_locale": "en",
"description": "__MSG_extensionDesc__",
"icons": {
"48": "img/icon48.png",
"96": "img/icon96.png",
"128": "img/icon128.png"
},
"author": "Étienne Deparis",
"homepage_url": "https://git.umaneti.net/simple_hinting/about/",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "79.0"
}
},
"permissions": [
"https://unshorten.umaneti.net/*",
"activeTab",
"storage", "contextMenus"
],
"background": {
"scripts": ["js/browser-polyfill.min.js", "js/background.js"]
},
"commands": {
"toggle-hinting": {
"suggested_key": {
"default": "Alt+Shift+L"
},
"description": "__MSG_extensionCommand__"
}
},
"browser_action": {
"default_icon": {
"16": "img/icon16.png",
"32": "img/icon32.png"
},
"browser_style": true,
"default_title": "__MSG_extensionTitle__"
}
}