chrome-cookie-extractor
Version:
Extract and decrypt Chrome cookies with curl integration - includes auth-curl command for authenticated requests
30 lines • 640 B
TypeScript
export interface Cookie {
name: string;
value: string;
domain: string;
path: string;
expires: number;
secure: boolean;
httponly: boolean;
creationTime: number;
}
export interface ChromeProfile {
name: string;
path: string;
cookiesPath: string;
}
export interface ExtractorOptions {
domain?: string;
profiles?: string[];
includeEncrypted?: boolean;
}
export interface OutputOptions {
format: 'netscape' | 'curl' | 'json';
outputPath?: string;
}
export declare enum Platform {
DARWIN = "darwin",
WIN32 = "win32",
LINUX = "linux"
}
//# sourceMappingURL=types.d.ts.map