forked from rugk/offline-qr-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
64 lines (58 loc) · 1.38 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"short_name": "__MSG_extensionNameShort__",
"version": "1.2.1",
"author": "rugk",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/rugk/offline-qr-code",
"browser_action": {
"browser_style": true,
"default_icon": "icons/icon-small-dark.svg",
"default_title": "__MSG_browserActionButtonTitle__",
"default_popup": "popup/qrcode.html",
"theme_icons": [
{
"dark": "icons/icon-small-dark.svg",
"light": "icons/icon-small-light.svg",
"size": 32
}
]
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"background": {
"page": "background/background.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F10"
}
}
},
"content_security_policy": "default-src 'self'; img-src data:",
"icons": {
"16": "icons/icon-small-colored.svg",
"32": "icons/icon-small-colored.svg",
"48": "icons/icon-large.svg",
"96": "icons/icon-large.svg"
},
"default_locale": "en",
"permissions": [
"activeTab",
"storage",
"menus"
],
"optional_permissions": [
"downloads"
],
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "60.0a1"
}
}
}