-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (31 loc) · 739 Bytes
/
manifest.json
File metadata and controls
31 lines (31 loc) · 739 Bytes
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
{
"manifest_version":2,
"name":"Hack UCSC 2016",
"description":"Forces the invisible hand in an ethical direction",
"version":"1.0",
"permissions": [
"activeTab",
"https://ajax.googleapis.com/"
],
"background":{
"scripts":["js/background.js"]
},
"browser_action": {
"default_icon": "images/logo.png",
"default_popup": "popup.html"
},
"content_scripts" : [{
"matches" : ["http://www.amazon.com/*",
"http://www.amazon.com/*/*",
"https://www.amazon.com/*",
"https://www.amazon.com/*/*"],
"js" : [
"js/jquery-1.12.0.min.js",
"js/jquery.colorbox-min.js",
"js/jquery.colorbox.js",
"js/d3.v3.min.js",
"js/contentScript.js"]
}],
"web_accessible_resources":["images/*",
"*.css"]
}