-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
47 lines (44 loc) · 1.09 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
{
"name": "WebWear",
"manifest_version": 2,
"version": "1.0",
"description": "A social navigation system for small tightly-knit groups.",
"permissions": [
"tabs","http://*/*","https://*/*","background","notifications","idle"
],
"browser_action": {
"default_icon": "images/icon.png",
"default_popup": "popup.html"
},
"background": {
"page":"background.html"
},
"content_scripts":[
{
"matches":["http://*/*", "https://www.google.com/*", "https://www.google.ca/*"],
"css":[
"css/webwear.css",
"css/custom-theme/jquery-ui-1.8.18.custom.css"
],
"js":[
"webwear-setup.js",
"scripts/linq/linq.js",
"scripts/jquery-1.7.js",
"scripts/linq/jquery.linq.js",
"scripts/jquery-ui.min.js",
"scripts/jquery.timeago.js",
"scripts/jquery.sparkline.min.js",
"scripts/jquery.json-2.3.min.js",
"scripts/jstorage.js",
"webwear-plugins.js",
"webwear-util.js",
"webwear-collection.js",
"webwear.js"
],
"run_at":"document_start"
}
],
"web_accessible_resources": [
"images/you.jpg"
]
}