-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
50 lines (50 loc) · 1.28 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.1.0",
"description": "__MSG_extensionDescription__",
"developer": {
"name": "7sDream",
"url": "https://github.com/7sDream/firelomo"
},
"default_locale": "zh_CN",
"icons": {
"128": "icons/firelomo-128.png",
"96": "icons/firelomo-96.png",
"48": "icons/firelomo-48.png"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "57.0"
}
},
"background": {
"page": "dist/background/background.html"
},
"browser_action": {
"default_icon": {
"48": "icons/firelomo-48.png"
},
"default_title": "__MSG_extensionName__"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+M",
"mac": "Command+Shift+M"
},
"description": "__MSG_browserActionShortcutDescription__"
}
},
"options_ui": {
"page": "dist/pages/options/options.html",
"browser_style": true
},
"permissions": [
"https://flomoapp.com/*",
"activeTab",
"menus",
"storage"
]
}