refactor: format code name
This commit is contained in:
parent
4bd876bdb0
commit
2de1f48f2a
|
@ -24,8 +24,8 @@ const (
|
||||||
qqBrowserProfilePath = "/AppData/Local/Tencent/QQBrowser/User Data/*/"
|
qqBrowserProfilePath = "/AppData/Local/Tencent/QQBrowser/User Data/*/"
|
||||||
firefoxProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default-release/"
|
firefoxProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default-release/"
|
||||||
operaProfilePath = "/AppData/Roaming/Opera Software/Opera Stable/"
|
operaProfilePath = "/AppData/Roaming/Opera Software/Opera Stable/"
|
||||||
operaKeyPath = "/AppData/Roaming/Opera Software/Opera Stable/Local State"
|
operaKeyPath = "/AppData/Roaming/Opera Software/Opera Stable/Local State"
|
||||||
operaGXProfilepath = "/AppData/Roaming/Opera Software/Opera GX Stable/"
|
operaGXProfilePath = "/AppData/Roaming/Opera Software/Opera GX Stable/"
|
||||||
operaGXKeyPath = "/AppData/Roaming/Opera Software/Opera GX Stable/Local State"
|
operaGXKeyPath = "/AppData/Roaming/Opera Software/Opera GX Stable/Local State"
|
||||||
vivaldiProfilePath = "/AppData/Local/Vivaldi/User Data/Default/"
|
vivaldiProfilePath = "/AppData/Local/Vivaldi/User Data/Default/"
|
||||||
vivaldiKeyPath = "/AppData/Local/Vivaldi/Local State"
|
vivaldiKeyPath = "/AppData/Local/Vivaldi/Local State"
|
||||||
|
@ -84,13 +84,13 @@ var (
|
||||||
Name: operaName,
|
Name: operaName,
|
||||||
New: NewChromium,
|
New: NewChromium,
|
||||||
},
|
},
|
||||||
"operagx": {
|
"opera-gx": {
|
||||||
ProfilePath: os.Getenv("USERPROFILE") + operaGXProfilepath,
|
ProfilePath: os.Getenv("USERPROFILE") + operaGXProfilePath,
|
||||||
KeyPath: os.Getenv("USERPROFILE") + operaGXKeyPath,
|
KeyPath: os.Getenv("USERPROFILE") + operaGXKeyPath,
|
||||||
Name: operaGXName,
|
Name: operaGXName,
|
||||||
New: NewChromium,
|
New: NewChromium,
|
||||||
},
|
},
|
||||||
"Vivaldi": {
|
"vivaldi": {
|
||||||
ProfilePath: os.Getenv("USERPROFILE") + vivaldiProfilePath,
|
ProfilePath: os.Getenv("USERPROFILE") + vivaldiProfilePath,
|
||||||
KeyPath: os.Getenv("USERPROFILE") + vivaldiKeyPath,
|
KeyPath: os.Getenv("USERPROFILE") + vivaldiKeyPath,
|
||||||
Name: vivaldiName,
|
Name: vivaldiName,
|
||||||
|
|
Loading…
Reference in New Issue