forked from josStorer/chatGPTBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rules.json
68 lines (68 loc) · 1.52 KB
/
rules.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
[
{
"id": 1,
"action": {
"type": "modifyHeaders",
"requestHeaders": [
{
"operation": "set",
"header": "origin",
"value": "https://www.bing.com"
},
{
"operation": "set",
"header": "referer",
"value": "https://www.bing.com/search?q=Bing+AI&showconv=1&FORM=hpcodx"
}
]
},
"condition": {
"requestDomains": ["sydney.bing.com", "www.bing.com"],
"resourceTypes": ["xmlhttprequest", "websocket"]
}
},
{
"id": 2,
"action": {
"type": "modifyHeaders",
"requestHeaders": [
{
"operation": "set",
"header": "origin",
"value": "https://chatgpt.com"
},
{
"operation": "set",
"header": "referer",
"value": "https://chatgpt.com"
}
]
},
"condition": {
"requestDomains": ["chatgpt.com"],
"resourceTypes": ["xmlhttprequest"]
}
},
{
"id": 3,
"action": {
"type": "modifyHeaders",
"requestHeaders": [
{
"operation": "set",
"header": "origin",
"value": "https://tcr9i.chat.openai.com"
},
{
"operation": "set",
"header": "referer",
"value": "https://tcr9i.chat.openai.com/v2/2.4.5/enforcement.6c9d6e9be9aa044cc5ce9548b4abe1b0.html"
}
]
},
"condition": {
"requestDomains": ["https://tcr9i.chat.openai.com"],
"resourceTypes": ["xmlhttprequest"]
}
}
]