mirror of
https://github.com/moonD4rk/HackBrowserData
synced 2025-02-20 12:36:53 +00:00
feat: Add support for Arc browser for macOS
This commit is contained in:
parent
0a7f19ab91
commit
71cee38b0c
@ -73,6 +73,12 @@ var (
|
||||
profilePath: yandexProfilePath,
|
||||
items: item.DefaultYandex,
|
||||
},
|
||||
"arc": {
|
||||
name: arcName,
|
||||
profilePath: arcProfilePath,
|
||||
storage: arcStorageName,
|
||||
items: item.DefaultChromium,
|
||||
},
|
||||
}
|
||||
firefoxList = map[string]struct {
|
||||
name string
|
||||
@ -99,6 +105,7 @@ var (
|
||||
vivaldiProfilePath = homeDir + "/Library/Application Support/Vivaldi/Default/"
|
||||
coccocProfilePath = homeDir + "/Library/Application Support/Coccoc/Default/"
|
||||
yandexProfilePath = homeDir + "/Library/Application Support/Yandex/YandexBrowser/Default/"
|
||||
arcProfilePath = homeDir + "/Library/Application Support/Arc/User Data/Default"
|
||||
|
||||
firefoxProfilePath = homeDir + "/Library/Application Support/Firefox/Profiles/"
|
||||
)
|
||||
@ -113,4 +120,5 @@ const (
|
||||
vivaldiStorageName = "Vivaldi"
|
||||
coccocStorageName = "CocCoc"
|
||||
yandexStorageName = "Yandex"
|
||||
arcStorageName = "Arc"
|
||||
)
|
||||
|
@ -23,4 +23,5 @@ const (
|
||||
qqBrowserName = "QQ"
|
||||
dcBrowserName = "DC"
|
||||
sogouName = "Sogou"
|
||||
arcName = "Arc"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user