-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathmanifest.json
45 lines (40 loc) · 1018 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": "cliget",
"version": "2.1.0",
"description": "Download login-protected files from the command line.",
"icons": {
"48": "icons/cliget.svg",
"96": "icons/cliget.svg"
},
"homepage_url": "https://github.com/zaidka/cliget",
"permissions": ["webRequest", "storage", "<all_urls>"],
"background": {
"scripts": ["utils.js", "curl.js", "wget.js", "aria2.js", "background.js"]
},
"browser_action": {
"browser_style": true,
"default_title": "cliget",
"default_popup": "popup.html",
"default_icon": {
"16": "icons/cliget-dark.svg",
"32": "icons/cliget-dark.svg"
},
"theme_icons": [{
"dark": "icons/cliget-dark.svg",
"light": "icons/cliget-light.svg",
"size": 16
},
{
"dark": "icons/cliget-dark.svg",
"light": "icons/cliget-light.svg",
"size": 32
}]
},
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "79.0"
}
}
}