mirror of
https://github.com/black-ant/Ant-Browser.git
synced 2026-07-14 18:48:55 +08:00
channel: master version: 1.1.0 source-ref: master published-at-utc: 2026-03-20T14:14:07Z
14 lines
297 B
Go
14 lines
297 B
Go
package browser
|
|
|
|
var defaultVerificationURLs = []string{
|
|
"https://ippure.com/",
|
|
"https://iplark.com/",
|
|
"https://ping0.cc/",
|
|
}
|
|
|
|
// BuildLaunchArgs 构建启动参数
|
|
func BuildLaunchArgs(args []string, profile *Profile) []string {
|
|
args = append(args, defaultVerificationURLs...)
|
|
return args
|
|
}
|