This commit is contained in:
JMARyA 2025-05-28 09:55:19 +02:00
parent 1429089795
commit 45fd5fa2f2

View file

@ -11,7 +11,7 @@ fn main() {
.short('b')
.long("browser")
.value_name("BROWSER")
.help("The browser to extract cookies from [firefox / chromium / chrome]"),
.help("The browser to extract cookies from [firefox / chromium / chrome / edge]"),
)
.arg(
Arg::new("domains")
@ -35,6 +35,7 @@ fn main() {
"firefox" => rookie::firefox(domains).unwrap(),
"chromium" => rookie::chromium(domains).unwrap(),
"chrome" => rookie::chrome(domains).unwrap(),
"edge" => rookie::edge(domains).unwrap(),
_ => {
std::process::exit(1);
}