1.0.7 • Published 2 years ago

chrome-cookie-finder v1.0.7

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

chrome-cookie-finder

decrypt chrome cookie in javascript way

install

npm install chrome-cookie-finder

usage

Callback

var finder = require('chrome-cookie-finder')
finder('http://www.baidu.com', function(err, cookie, fullCookieInfo) {
    if (err) {
        return console.log(err)
    }

    console.log('cookie: ', cookie)
    console.log('fullCookieInfo: ', fullCookieInfo)
})

Promise

var finder = require('chrome-cookie-finder')

async function main() {
    const { cookies, fullCookieInfo } = await finder('http://www.baidu.com');
}

related link

Inspired By https://n8henrie.com/2014/05/decrypt-chrome-cookies-with-python

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago