|
|
@ -13,6 +13,7 @@ import ( |
|
|
|
const ( |
|
|
|
const ( |
|
|
|
fireFoxProfilePath = "/home/*/.mozilla/firefox/*.default-release/" |
|
|
|
fireFoxProfilePath = "/home/*/.mozilla/firefox/*.default-release/" |
|
|
|
chromeProfilePath = "/home/*/.config/google-chrome/*/" |
|
|
|
chromeProfilePath = "/home/*/.config/google-chrome/*/" |
|
|
|
|
|
|
|
chromiumProfilePath = "/home/*/.config/chromium/*/" |
|
|
|
edgeProfilePath = "/home/*/.config/microsoft-edge*/*/" |
|
|
|
edgeProfilePath = "/home/*/.config/microsoft-edge*/*/" |
|
|
|
braveProfilePath = "/home/*/.config/BraveSoftware/Brave-Browser/*/" |
|
|
|
braveProfilePath = "/home/*/.config/BraveSoftware/Brave-Browser/*/" |
|
|
|
chromeBetaProfilePath = "/home/*/.config/google-chrome-beta/*/" |
|
|
|
chromeBetaProfilePath = "/home/*/.config/google-chrome-beta/*/" |
|
|
@ -22,6 +23,7 @@ const ( |
|
|
|
|
|
|
|
|
|
|
|
const ( |
|
|
|
const ( |
|
|
|
chromeStorageName = "Chrome Safe Storage" |
|
|
|
chromeStorageName = "Chrome Safe Storage" |
|
|
|
|
|
|
|
chromiumStorageName = "Chromium Safe Storage" |
|
|
|
edgeStorageName = "Chromium Safe Storage" |
|
|
|
edgeStorageName = "Chromium Safe Storage" |
|
|
|
braveStorageName = "Brave Safe Storage" |
|
|
|
braveStorageName = "Brave Safe Storage" |
|
|
|
chromeBetaStorageName = "Chrome Safe Storage" |
|
|
|
chromeBetaStorageName = "Chrome Safe Storage" |
|
|
@ -66,6 +68,12 @@ var ( |
|
|
|
Storage: chromeBetaStorageName, |
|
|
|
Storage: chromeBetaStorageName, |
|
|
|
New: NewChromium, |
|
|
|
New: NewChromium, |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
"chromium": { |
|
|
|
|
|
|
|
ProfilePath: chromiumProfilePath, |
|
|
|
|
|
|
|
Name: chromiumName, |
|
|
|
|
|
|
|
Storage: chromiumStorageName, |
|
|
|
|
|
|
|
New: NewChromium, |
|
|
|
|
|
|
|
}, |
|
|
|
"opera": { |
|
|
|
"opera": { |
|
|
|
ProfilePath: operaProfilePath, |
|
|
|
ProfilePath: operaProfilePath, |
|
|
|
Name: operaName, |
|
|
|
Name: operaName, |
|
|
|