remove UA

This commit is contained in:
Archeb
2024-06-25 01:32:08 +08:00
parent 9d7aa32df1
commit 492715932c
2 changed files with 4 additions and 5 deletions
+1 -2
View File
@@ -1,8 +1,7 @@
export const config = { export const config = {
"sessions": [ "sessions": [
{ {
"cookie": "...", "cookie": `...`,
"user_agent": "...",
} }
] ]
} }
+3 -3
View File
@@ -21,13 +21,13 @@ prompt("请Ctrl+C复制以下所有内容(Cookie",document.cookie)
export const config = { export const config = {
"sessions": [ "sessions": [
{ {
"cookie": "cookie1" "cookie": `cookie1`
}, },
{ {
"cookie": "cookie2" "cookie": `cookie2`
}, },
{ {
"cookie": "cookie3" "cookie": `cookie3`
} }
] ]
} }