forked from tatablack/funda-companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
49 lines (40 loc) · 1.19 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
{
"manifest_version": 2,
"name": "Funda Companion",
"description": "Enhances Funda's saved ads listing.",
"version": "1.0.0",
"permissions": [
"storage"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' https://*.googleapis.com https://maps.gstatic.com; object-src 'self'",
"content_scripts": [
{
"matches": ["*://www.funda.nl/mijn/bewaard/*"],
"css": [
"css/bewaard.css"
],
"js": [
"js/lib/underscore-1.4.4.min.js",
"js/lib/jquery-2.0.0.min.js",
"js/lib/jade-0.30.0.min.js",
"js/common.js",
"js/FundaCompanion.UI.js",
"js/FundaCompanion.Parser.js",
"js/FundaCompanion.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "images/icon16.png",
"48": "images/icon48-2.png",
"128": "images/icon128.png"
},
"web_accessible_resources": [
"images/loader.gif",
"pages/mapDetail.html",
"css/mapDetail.css",
"templates/listing.jade",
"templates/detail.jade"
]
}