-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 870 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
{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "testcontextmenu@mytest.com",
"strict_min_version": "77.0"
}
},
"name": "Test Context Menu",
"author": "VERIFROM",
"description": "Test Context Menu",
"version": "1.0.0",
"icons": {
"16": "logo/16x16.png",
"32": "logo/32x32.png",
"48": "logo/48x48.png",
"96": "logo/96x96.png",
"128": "logo/128x128.png",
"256": "logo/256x256.png"
},
"permissions": [
"notifications",
"messagesRead",
"storage",
"activeTab",
"tabs",
"menus",
"accountsRead",
"messagesMove"
],
"background": {
"scripts": [
"backgroundTest.js"
]
},
"browser_action": {
"browser_style": false,
"default_icon":"logo/logosignalspam.svg",
"default_title": "This a test button"
},
"web_accessible_resources": [
]
}