-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
45 lines (39 loc) · 938 Bytes
/
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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"author": "Nandi Wang",
"version": "1.1.4",
"default_locale": "en",
"applications": {
"gecko": {
"strict_min_version": "54.0a1"
}
},
"browser_action": {
"default_icon": "icons/wechat-toolbar.png",
"default_title": "__MSG_toolbarTitle__"
},
"sidebar_action": {
"default_icon": "icons/wechat.png",
"default_title" : "__MSG_sidebarTitle__",
"default_panel": "sidebar/panel.html"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["*://wx.qq.com/?pos=sidebar*"],
"js": ["content-script.js"]
}
],
"permissions": ["storage", "tabs"],
"commands": {
"_execute_sidebar_action": {
"suggested_key": {
"default": "Alt+Shift+W"
}
}
}
}