Add Brave browser support for cookie extraction#399
Merged
j178 merged 4 commits intoj178:masterfrom Dec 23, 2025
Merged
Conversation
Switch the kooky library to phantompunk's unmerged PR, which includes Brave browser support. When the PR is merged we can update the dependency. This allows users to configure `browsers: [brave]` in leetgo.yaml for cookie-based authentication. Changes: - Update kooky dependency to use browserutils/kooky with Brave support - Add Brave browser import in credential.go - Update to using new version API (FindAllCookieStores, TraverseCookies)
Owner
|
Thanks! Would you mind porting the patch from browserutils/kooky#96 over to my fork (https://github.com/j178/kooky) and bumping the version there instead? |
Contributor
Author
|
Can you merge that PR and update this PR with the new dependency when you get a chance? |
`go mod tidy` can fix versions once the PR merges.
406b7cb to
9d216ca
Compare
6fb5efb to
9ae6f79
Compare
j178
approved these changes
Dec 23, 2025
j178
added a commit
that referenced
this pull request
Dec 23, 2025
* Add Brave browser support for cookie extraction Switch the kooky library to phantompunk's unmerged PR, which includes Brave browser support. When the PR is merged we can update the dependency. This allows users to configure `browsers: [brave]` in leetgo.yaml for cookie-based authentication. Changes: - Update kooky dependency with Brave support - Add Brave browser import in credential.go * Switch from browserutils/kooky to j178/kooky `go mod tidy` can fix versions once the PR merges. * Bump github.com/j178/kooky * Restore --------- Co-authored-by: Jo <10510431+j178@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Switch the kooky library to phantompunk's unmerged PR, which includes Brave browser support. When the PR is merged we can update the dependency. This allows users to configure
browsers: [brave]in leetgo.yaml for cookie-based authentication.Changes:
Link to the PR supporting Brave: browserutils/kooky#96