Google Chrome stores browser cookies in an SQLite database. The database has two tables, meta
containing format and version metadata, and cookies
with the contents of the cookies. The cookies
table uses this schema:
-- To reproduce: sqlite path/to/Cookies .schema
CREATE TABLE cookies (
creation_utc INTEGER NOT NULL, -- microseconds since epoch
host_key TEXT NOT NULL, -- domain
name TEXT NOT NULL,