sing-rules 2025.905.1020 → 2025.906.952
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/rules/ai-proc.json +23 -0
- package/rules/ai-proc.srs +0 -0
- package/rules/ai.json +0 -18
- package/rules/ai.srs +0 -0
- package/rules/block.json +480 -12
- package/rules/block.srs +0 -0
- package/rules/direct.json +99 -309
- package/rules/direct.srs +0 -0
- package/rules/geoip-cn.json +19 -17
- package/rules/geoip-cn.srs +0 -0
- package/rules/geosites-cn.json +80 -292
- package/rules/geosites-cn.srs +0 -0
- package/rules/geosites-not-cn.json +6 -0
- package/rules/geosites-not-cn.srs +0 -0
- package/rules/gfw.json +6 -7
- package/rules/gfw.srs +0 -0
- package/rules/netflix.json +0 -3
- package/rules/netflix.srs +0 -0
package/package.json
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"rules": [
|
|
4
|
+
{
|
|
5
|
+
"process_name": [
|
|
6
|
+
"ChatGPT",
|
|
7
|
+
"ChatGPTHelper",
|
|
8
|
+
"Claude",
|
|
9
|
+
"Claude Helper",
|
|
10
|
+
"Claude Helper (GPU)",
|
|
11
|
+
"Claude Helper (Renderer)",
|
|
12
|
+
"claude",
|
|
13
|
+
"gemini"
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"process_path_regex": [
|
|
18
|
+
"/Applications/ChatGPT\\.app/.*",
|
|
19
|
+
"/Applications/Claude\\.app/.*"
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
Binary file
|
package/rules/ai.json
CHANGED
|
@@ -108,24 +108,6 @@
|
|
|
108
108
|
"openai"
|
|
109
109
|
],
|
|
110
110
|
"domain_regex": "^chatgpt-async-webps-prod-\\S+-\\d+\\.webpubsub\\.azure\\.com$"
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
"process_name": [
|
|
114
|
-
"ChatGPT",
|
|
115
|
-
"ChatGPTHelper",
|
|
116
|
-
"Claude",
|
|
117
|
-
"Claude Helper",
|
|
118
|
-
"Claude Helper (GPU)",
|
|
119
|
-
"Claude Helper (Renderer)",
|
|
120
|
-
"claude",
|
|
121
|
-
"gemini"
|
|
122
|
-
]
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"process_path_regex": [
|
|
126
|
-
"/Applications/ChatGPT\\.app/.*",
|
|
127
|
-
"/Applications/Claude\\.app/.*"
|
|
128
|
-
]
|
|
129
111
|
}
|
|
130
112
|
]
|
|
131
113
|
}
|
package/rules/ai.srs
CHANGED
|
Binary file
|