package
0.2.2
Repository: https://github.com/browserutils/kooky.git
Documentation: pkg.go.dev

# README

SQL schemes of file cookies.sqlite, table moz_cookies

extracted with sqlitebrowser

-- epiphany (Gnome Web) 3.38.2 Linux
CREATE TABLE moz_cookies (
    id INTEGER PRIMARY KEY,
    name TEXT,
    value TEXT,
    host TEXT,
    path TEXT,
    expiry INTEGER,
    lastAccessed INTEGER,
    isSecure INTEGER,
    isHttpOnly INTEGER,
    sameSite INTEGER -- new
)
-- epiphany (Gnome Web) 3.32 Linux
CREATE TABLE moz_cookies (
    id INTEGER PRIMARY KEY,
    name TEXT,
    value TEXT
    host TEXT,
    path TEXT,
    expiry INTEGER,
    lastAccessed INTEGER,
    isSecure INTEGER,
    isHttpOnly INTEGER
)

# Functions

CookieJar returns an initiated http.CookieJar based on the cookies stored by the Epiphany/Gnome Web browser.
CookieStore has to be closed with CookieStore.Close() after use.
No description provided by the author