-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
39 lines (39 loc) · 1.13 KB
/
Copy pathconfig.example.json
File metadata and controls
39 lines (39 loc) · 1.13 KB
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
{
"monitors": [
{
"name": "Random Quotes",
"url": "http://www.quotationspage.com/random.php",
"useChrome": false,
"interval": 5,
"httpHeaders": {
"user-agent": [
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36"
]
},
"generic": {
"selector": {
"type": "css",
"paths": [
"#content > dl > dt:nth-child(3)",
"#content > dl > dt:nth-child(5)"
]
},
"filters": {
"contains": [
"test"
],
"notContains": [
"notTest"
]
},
"ignoreEmpty": true
}
}
],
"notifiers": {
"pushover": {
"apiToken": "your_pushover_app_token",
"userKey": "your_pushover_user_key"
}
}
}