-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
68 lines (68 loc) · 1.41 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"manifest_version": 2,
"name": "Liveability NL",
"version": "0.1.0",
"description": "Liveability Scores for renting sites like Funda/Pararius.",
"browser_action": {
"default_title": "Liveability NL",
"default_popup": "popup/popup.html"
},
"permissions": [
"tabs",
"storage"
],
"background": {
"scripts": [
"util/constants.js",
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"settings/funda.js"
],
"matches": [
"https://www.funda.nl/*"
]
},
{
"js": [
"settings/pararius.js"
],
"matches": [
"https://www.pararius.com/*"
]
},
{
"css": [
"styles/styles.css",
"styles/spinner.css",
"styles/dialog.css"
],
"js": [
"util/extension.js",
"util/effects.js",
"resources/chartScripts.js",
"components/liveabilityChart.js",
"components/helpModal.js",
"components/liveabilityRegion.js",
"util/constants.js",
"util/csvFunctions.js",
"content.js"
],
"matches": [
"https://www.pararius.com/*",
"https://www.funda.nl/*"
]
}
],
"web_accessible_resources": [
"resources/PC4LBR.csv",
"resources/PC4DIMENSIE.csv",
"resources/chart-picture.png",
"resources/help.html",
"resources/chartScripts.js"
]
}