add edge
This commit is contained in:
parent
1429089795
commit
45fd5fa2f2
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue