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
|
{
"title": "v.recipes",
"template": "https://v.recipes/dns-{option}",
"bootstrap_dns": "1.1.1.1,1.0.0.1,8.8.8.8,8.8.4.4",
"help_link": "https://v.recipes/dns/",
"params": {
"option": {
"description": "Variant",
"type": "select",
"regex": "(query|security|adblock|ecs|cn)",
"options": [
{
"value": "query",
"description": "Unfiltered"
},
{
"value": "security",
"description": "Security"
},
{
"value": "adblock",
"description": "Adblock"
},
{
"value": "ecs",
"description": "ECS Optimized"
},
{
"value": "cn",
"description": "CN Optimized"
}
],
"default": "query"
}
}
}
|