GitXplorerGitXplorer
a

decrypt-chrome-cookie

public
11 stars
1 forks
3 issues

Commits

List of commits on branch master.
Verified
b7875afe23e29c8abea577f69b99c8fe4cca2dc6

Merge pull request #9 from anc95/dependabot/npm_and_yarn/simple-get-3.1.1

aanc95 committed 3 years ago
Verified
a5f92545637b5f24a4fe4a1edeb6c97ff661f468

Bump simple-get from 3.1.0 to 3.1.1

ddependabot[bot] committed 3 years ago
Verified
7beaf41ac80030cf84a33ce4b063c51a85c38c7c

Merge pull request #8 from anc95/dependabot/npm_and_yarn/keytar-7.9.0

aanc95 committed 3 years ago
Verified
f7080cd70016fe77b160deea1e30edde0f80d8d2

Bump keytar from 7.7.0 to 7.9.0

ddependabot[bot] committed 3 years ago
Unverified
72b6b980e28ca64c50b051a40429c5c910bcc06b

pretty json

aanc95 committed 3 years ago
Verified
466476552dd41dfc9275c90c90eed33b58bbb3dd

Update package.json

aanc95 committed 3 years ago

README

The README file for this repository.

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