feat: support vivaldi browser Close #51

This commit is contained in:
moond4rk
2020-12-03 12:36:55 +08:00
committed by ᴍᴏᴏɴD4ʀᴋ
parent 06e79f0dbb
commit 0f7710eca5
3 changed files with 17 additions and 0 deletions
+8
View File
@@ -17,6 +17,7 @@ const (
braveProfilePath = "/Users/*/Library/Application Support/BraveSoftware/Brave-Browser/*/"
operaProfilePath = "/Users/*/Library/Application Support/com.operasoftware.Opera/"
operaGXProfilePath = "/Users/*/Library/Application Support/com.operasoftware.OperaGX/"
vivaldiProfilePath = "/Users/*/Library/Application Support/Vivaldi/*/"
)
const (
@@ -25,6 +26,7 @@ const (
edgeStorageName = "Microsoft Edge"
braveStorageName = "Brave"
operaStorageName = "Opera"
vivaldiStorageName = "Vivaldi"
)
var (
@@ -76,6 +78,12 @@ var (
Storage: operaStorageName,
New: NewChromium,
},
"vivaldi": {
ProfilePath: vivaldiProfilePath,
Name: vivaldiName,
Storage: vivaldiStorageName,
New: NewChromium,
},
}
)