-
Notifications
You must be signed in to change notification settings - Fork 68
/
config.gradle
64 lines (38 loc) · 1.97 KB
/
config.gradle
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
ext{
user=[
// APP首页功能的权限控制, (首页显示的内容)
'permission' : '"[' +
// 不需要的加双斜杠屏蔽就行
// 比如不需要显示青龙工具:
// '\\\"ql\\\",' + // 抓CK浏览器
'\\\"web\\\",' + // 抓CK浏览器
'\\\"ql\\\",' + // 青龙工具
'\\\"setting\\\"' + // 设置
']"',
]
// CK提交时优先提交到青龙服务器
// 如果,配置了青龙服务器ip,并且不是127.0.0.1, 那么就提交CK到青龙服务器
// 否则,提交到GitEE
qinglong=[ // 青龙服务器相关参数配置
"ip" : "http://127.0.0.1:5700", // 地址
"version" : "", //青龙版本号,最好还是填一下,免得青龙的版本号接口获取失败,无法处理版本兼容性问题
// 高版本青龙在 系统设置 -> 应用设置 中添加, 权限勾选【环境变量】、【系统信息】
// 配置了【client_id】、【client_secret】 就不需要再配置用户密码
"client_id" : "", // client_id
"client_secret" : "", // client_secret
// 低版本青龙无法配置client_id、client_secret的,
// 再此处配置【用户名】、【密码】,否则无法提交到青龙服务器
"username" : "admin", // 用户名
"password" : "admin", // 密码
]
gitee =[ // gitee 相关参数配置
"token" : "", //私人令牌
// gitee issue的浏览器地址:
"issue_url" : "https://gitee.com/mxinTest/jdcookie-temp/issues/I23PNU",
]
// Web浏览器抓包 初始化加载地址 (已默认。可以不用修改)
web =[
"home_url" : "https://m.jd.com", //默认加载地址
"cookie_domain" :".jd.com", //获取指定域名下的cookie
]
}