mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
feat: add chromium support for Windows, Close#62
This commit is contained in:
@@ -17,6 +17,8 @@ const (
|
||||
chromeKeyPath = "/AppData/Local/Google/Chrome/User Data/Local State"
|
||||
chromeBetaProfilePath = "/AppData/Local/Google/Chrome Beta/User Data/*/"
|
||||
chromeBetaKeyPath = "/AppData/Local/Google/Chrome Beta/User Data/Local State"
|
||||
chromiumProfilePath = "/AppData/Local/Chromium/User Data/*/"
|
||||
chromiumKeyPath = "/AppData/Local/Chromium/User Data/Local State"
|
||||
edgeProfilePath = "/AppData/Local/Microsoft/Edge/User Data/*/"
|
||||
edgeKeyPath = "/AppData/Local/Microsoft/Edge/User Data/Local State"
|
||||
braveProfilePath = "/AppData/Local/BraveSoftware/Brave-Browser/User Data/*/"
|
||||
@@ -52,6 +54,12 @@ var (
|
||||
Name: chromeBetaName,
|
||||
New: NewChromium,
|
||||
},
|
||||
"chromium": {
|
||||
ProfilePath: os.Getenv("USERPROFILE") + chromiumProfilePath,
|
||||
KeyPath: os.Getenv("USERPROFILE") + chromiumKeyPath,
|
||||
Name: chromiumName,
|
||||
New: NewChromium,
|
||||
},
|
||||
"edge": {
|
||||
ProfilePath: os.Getenv("USERPROFILE") + edgeProfilePath,
|
||||
KeyPath: os.Getenv("USERPROFILE") + edgeKeyPath,
|
||||
|
||||
Reference in New Issue
Block a user