-
Notifications
You must be signed in to change notification settings - Fork 386
Expand file tree
/
Copy pathadvanced_filter.json
More file actions
70 lines (70 loc) · 1.96 KB
/
Copy pathadvanced_filter.json
File metadata and controls
70 lines (70 loc) · 1.96 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
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
69
70
{
"id": "advanced_filter",
"name": "高级过滤器",
"description": "使用 AND/OR 复合条件进行精确过滤",
"version": "1.0.0",
"author": "BiliPai",
"type": "feed",
"rules": [
{
"condition": {
"and": [
{
"field": "duration",
"op": "lt",
"value": 60
},
{
"field": "title",
"op": "contains",
"value": "搬运"
}
]
},
"action": "hide"
},
{
"condition": {
"or": [
{
"field": "owner.name",
"op": "contains",
"value": "营销号"
},
{
"field": "title",
"op": "regex",
"value": "震惊.*必看|不看后悔"
}
]
},
"action": "hide"
},
{
"condition": {
"and": [
{
"field": "stat.view",
"op": "lt",
"value": 1000
},
{
"or": [
{
"field": "title",
"op": "contains",
"value": "广告"
},
{
"field": "title",
"op": "contains",
"value": "推广"
}
]
}
]
},
"action": "hide"
}
]
}