-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
40 lines (38 loc) · 946 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
{
"manifest_version": 2,
"name": "ChromeCrunch",
"description": "Chrome add-on to access key CrunchBase data and take notes on company sites. Accelerate and organize your research.",
"version": "1.0",
"permissions": [
"http://sandbox.evernote.com/",
"storage"
],
"browser_action": {
"default_icon": "icon.png"
},
"background": {
"page": "background.html"
},
"content_scripts": [{
"css": [
"css/main.css",
"bower_components/font-awesome/css/font-awesome.min.css",
"tooltip/tooltip.css"
],
"js": [
"bower_components/jquery/dist/jquery.js",
"bower_components/bootstrap/dist/js/bootstrap.min.js",
"lib/jsOAuth-1.3.6.min.js",
"tooltip/companyNames.js",
"tooltip/tooltip.js",
"scripts.js"
],
"matches": [
"http://*/*",
"https://*/*"
]
}],
"web_accessible_resources":[
"bower_components/font-awesome/fonts/*"
]
}