ChromeCookiesViewer is a Windows command-line tool that allows you to export or delete the cookies stored by Google Chrome Web Browser.
Download from releases
- IDE: Visual Studio 2019
- Language: C# 7.3
- SDK: .NET Framework 4.7.2
- Clone the repository.
$ git clone https://github.com/mdapei/ChromeCookiesViewer.git
- Open the repository in VS2019, switch to the Release configuration, and build the solution. That's it!
ChromeCookiesViewer <host> [-s <file> | -p | -d] [OPTIONS]
<host> Regex for filtering the host name associated to the cookies.
Use the asterisk (*) wildcard for all hosts.
-s <file> Save the cookies in the specified text file (path can be absolute or relative).
-p Print cookies in console.
-d Delete cookies from the browser (Google Chrome must be closed).
Options:
-n <name> Regex for filtering the cookie names.
-a Include multiple cookies with the same name.
Without this option, in case of cookies with the same name,
only the most up-to-date one will be extracted.
-e Exclude expired cookies.
Due to a recent Google Chrome update (version 114.0.5735.110 and later) to protect users against malware attempting to steal cookie information, you need to launch it from the command line with:
chrome.exe --disable-features=LockProfileCookieDatabase
Another option is just close Google Chrome before running ChromeCookiesViewer.
GitHub Issues are for Bugs and Feature Requests Only