-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
112 lines (112 loc) · 2.72 KB
/
config.example.json
File metadata and controls
112 lines (112 loc) · 2.72 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"browserPath": "C:\\path\\to\\fingerprint-chromium\\chrome.exe",
"defaultProfile": "uk",
"appendUrlAtEnd": true,
"autoDetectByIp": true,
"ipInfoUrl": "https://ipapi.co/json/",
"ipLookupTimeoutSeconds": 5,
"countryProfileMap": {
"GB": "uk",
"US": "us",
"JP": "jp",
"SG": "sg",
"HK": "hk",
"DE": "de",
"CA": "ca",
"TW": "tw",
"IN": "in",
"CN": "cn"
},
"profiles": {
"uk": {
"args": [
"--fingerprint=1001",
"--user-data-dir=C:\\path\\to\\profiles\\profile-uk-1001",
"--lang=en-GB",
"--accept-lang=en-GB,en",
"--timezone=Europe/London"
]
},
"cn": {
"args": [
"--fingerprint=1002",
"--user-data-dir=C:\\path\\to\\profiles\\profile-cn-1002",
"--lang=zh-CN",
"--accept-lang=zh-CN,zh,en-US",
"--timezone=Asia/Shanghai"
]
},
"us": {
"args": [
"--fingerprint=1003",
"--user-data-dir=C:\\path\\to\\profiles\\profile-us-1003",
"--lang=en-US",
"--accept-lang=en-US,en",
"--timezone=America/New_York"
]
},
"jp": {
"args": [
"--fingerprint=1004",
"--user-data-dir=C:\\path\\to\\profiles\\profile-jp-1004",
"--lang=ja-JP",
"--accept-lang=ja-JP,ja,en-US",
"--timezone=Asia/Tokyo"
]
},
"sg": {
"args": [
"--fingerprint=1005",
"--user-data-dir=C:\\path\\to\\profiles\\profile-sg-1005",
"--lang=en-SG",
"--accept-lang=en-SG,en",
"--timezone=Asia/Singapore"
]
},
"hk": {
"args": [
"--fingerprint=1006",
"--user-data-dir=C:\\path\\to\\profiles\\profile-hk-1006",
"--lang=zh-HK",
"--accept-lang=zh-HK,zh,en",
"--timezone=Asia/Hong_Kong"
]
},
"de": {
"args": [
"--fingerprint=1007",
"--user-data-dir=C:\\path\\to\\profiles\\profile-de-1007",
"--lang=de-DE",
"--accept-lang=de-DE,de,en",
"--timezone=Europe/Berlin"
]
},
"ca": {
"args": [
"--fingerprint=1008",
"--user-data-dir=C:\\path\\to\\profiles\\profile-ca-1008",
"--lang=en-CA",
"--accept-lang=en-CA,en",
"--timezone=America/Toronto"
]
},
"tw": {
"args": [
"--fingerprint=1009",
"--user-data-dir=C:\\path\\to\\profiles\\profile-tw-1009",
"--lang=zh-TW",
"--accept-lang=zh-TW,zh,en",
"--timezone=Asia/Taipei"
]
},
"in": {
"args": [
"--fingerprint=1010",
"--user-data-dir=C:\\path\\to\\profiles\\profile-in-1010",
"--lang=en-IN",
"--accept-lang=en-IN,en",
"--timezone=Asia/Kolkata"
]
}
}
}