forked from andy-portmen/external-application-button
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (46 loc) · 1.08 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
{
"manifest_version":2,
"version":"0.2.8",
"name":"External Application Button",
"description":"A highly customizable external application button and context-menu items",
"permissions":[
"storage",
"tabs",
"contextMenus",
"nativeMessaging",
"downloads",
"notifications",
"https://api.github.com/repos/andy-portmen/native-client/releases/latest"
],
"homepage_url": "http://add0n.com/external-application-button.html?from=context",
"background":{
"persistent": false,
"scripts":[
"termlib_parser.js",
"common.js"
]
},
"options_ui": {
"page": "data/options/index.html",
"chrome_style": true
},
"browser_action":{
"default_icon": {
"16": "data/icons/16.png",
"32": "data/icons/32.png",
"64": "data/icons/64.png"
}
},
"icons": {
"16": "data/icons/16.png",
"32": "data/icons/32.png",
"64": "data/icons/64.png",
"128": "data/icons/128.png"
},
"applications": {
"gecko": {
"id": "{65b77238-bb05-470a-a445-ec0efe1d66c4}",
"strict_min_version": "52.0"
}
}
}