You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
3.2 KiB
114 lines
3.2 KiB
package browser
|
|
|
|
import (
|
|
"hack-browser-data/internal/item"
|
|
)
|
|
|
|
var (
|
|
chromiumList = map[string]struct {
|
|
name string
|
|
storage string
|
|
profilePath string
|
|
items []item.Item
|
|
}{
|
|
"chrome": {
|
|
name: chromeName,
|
|
storage: chromeStorageName,
|
|
profilePath: chromeProfilePath,
|
|
items: item.DefaultChromium,
|
|
},
|
|
"edge": {
|
|
name: edgeName,
|
|
storage: edgeStorageName,
|
|
profilePath: edgeProfilePath,
|
|
items: item.DefaultChromium,
|
|
},
|
|
"chromium": {
|
|
name: chromiumName,
|
|
storage: chromiumStorageName,
|
|
profilePath: chromiumProfilePath,
|
|
items: item.DefaultChromium,
|
|
},
|
|
"chrome-beta": {
|
|
name: chromeBetaName,
|
|
storage: chromeBetaStorageName,
|
|
profilePath: chromeBetaProfilePath,
|
|
items: item.DefaultChromium,
|
|
},
|
|
"opera": {
|
|
name: operaName,
|
|
profilePath: operaProfilePath,
|
|
storage: operaStorageName,
|
|
items: item.DefaultChromium,
|
|
},
|
|
"opera-gx": {
|
|
name: operaGXName,
|
|
profilePath: operaGXProfilePath,
|
|
storage: operaStorageName,
|
|
items: item.DefaultChromium,
|
|
},
|
|
"vivaldi": {
|
|
name: vivaldiName,
|
|
storage: vivaldiStorageName,
|
|
profilePath: vivaldiProfilePath,
|
|
items: item.DefaultChromium,
|
|
},
|
|
"coccoc": {
|
|
name: coccocName,
|
|
storage: coccocStorageName,
|
|
profilePath: coccocProfilePath,
|
|
items: item.DefaultChromium,
|
|
},
|
|
"brave": {
|
|
name: braveName,
|
|
profilePath: braveProfilePath,
|
|
storage: braveStorageName,
|
|
items: item.DefaultChromium,
|
|
},
|
|
"yandex": {
|
|
name: yandexName,
|
|
storage: yandexStorageName,
|
|
profilePath: yandexProfilePath,
|
|
items: item.DefaultYandex,
|
|
},
|
|
}
|
|
firefoxList = map[string]struct {
|
|
name string
|
|
storage string
|
|
profilePath string
|
|
items []item.Item
|
|
}{
|
|
"firefox": {
|
|
name: firefoxName,
|
|
profilePath: firefoxProfilePath,
|
|
items: item.DefaultFirefox,
|
|
},
|
|
}
|
|
)
|
|
|
|
var (
|
|
chromeProfilePath = homeDir + "/Library/Application Support/Google/Chrome/"
|
|
chromeBetaProfilePath = homeDir + "/Library/Application Support/Google/Chrome Beta/"
|
|
chromiumProfilePath = homeDir + "/Library/Application Support/Chromium/"
|
|
edgeProfilePath = homeDir + "/Library/Application Support/Microsoft Edge/"
|
|
braveProfilePath = homeDir + "/Library/Application Support/BraveSoftware/Brave-Browser/"
|
|
operaProfilePath = homeDir + "/Library/Application Support/com.operasoftware.Opera/"
|
|
operaGXProfilePath = homeDir + "/Library/Application Support/com.operasoftware.OperaGX/"
|
|
vivaldiProfilePath = homeDir + "/Library/Application Support/Vivaldi/"
|
|
coccocProfilePath = homeDir + "/Library/Application Support/Coccoc/"
|
|
yandexProfilePath = homeDir + "/Library/Application Support/Yandex/YandexBrowser/"
|
|
|
|
firefoxProfilePath = homeDir + "/Library/Application Support/Firefox/Profiles/"
|
|
)
|
|
|
|
const (
|
|
chromeStorageName = "Chrome"
|
|
chromeBetaStorageName = "Chrome"
|
|
chromiumStorageName = "Chromium"
|
|
edgeStorageName = "Microsoft Edge"
|
|
braveStorageName = "Brave"
|
|
operaStorageName = "Opera"
|
|
vivaldiStorageName = "Vivaldi"
|
|
coccocStorageName = "CocCoc"
|
|
yandexStorageName = "Yandex"
|
|
)
|
|
|