-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
55 lines (55 loc) · 1.23 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
51
52
53
54
55
{
"manifest_version": 2,
"name": "Black Duck Radar",
"description": "This extension shows license, vulnerability, and Black Duck information about a component.",
"version": "2.1.5",
"background": {
"scripts": [
"background.min.js"
],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "img/duck.png",
"48": "img/duck.png",
"128": "img/duck.png"
},
"default_title": "Black Duck Radar"
},
"icons": {
"16": "img/duck.png",
"48": "img/duck.png",
"128": "img/duck.png"
},
"options_ui": {
"page": "options.html"
},
"permissions": [
"declarativeContent",
"storage",
"tabs",
"webNavigation",
"activeTab",
"https://ajax.googleapis.com/",
"https://blackducksoftware.github.io/black-duck-radar",
"https://www.google-analytics.com/collect",
"https://www.npmjs.com/",
"https://cocoapods.org/",
"https://metacpan.org/",
"https://packagist.org/",
"https://pypi.org/",
"https://www.nuget.org/",
"https://rubygems.org/",
"https://search.maven.org/"
],
"optional_permissions": [
"http://*/",
"https://*/"
],
"web_accessible_resources": [
"login.css",
"logo.css",
"img/*.png"
]
}