Skip to content

Releases: Kalininator/cookie-thief

Dependency updates

12 Apr 22:58
457030f
Compare
Choose a tag to compare

Updated some dependencies that were flagged in npm audit

What's Changed

Full Changelog: v1.1.0...v1.1.1

Enforce platform specific package installation

17 Oct 10:41
d8945e5
Compare
Choose a tag to compare

What's Changed

  • Ensure required modules installed on platforms. This should flag any errors at install time instead of runtime in the case that the optionalDependencies don't get installed on the platforms that require them.

1.0.0 Release

10 Oct 10:57
b4c0a5b
Compare
Choose a tag to compare
  • Removed tldjs from dependencies. Domain should be provided now instead of URL, as it is not consistent how sites choose their cookie domain relative to the URL.
  • Removed deprecated functions getChromeCookie and getFirefoxCookie. Should use the more generic getCookie now

Added listProfiles function

02 Oct 11:18
96908db
Compare
Choose a tag to compare
const profiles = await listProfiles(Browser.Firefox);

// profiles:
// ['default', 'default-release']

Added listCookies function

26 Sep 22:11
dd60dc5
Compare
Choose a tag to compare

Added a listCookies function that will return all cookies for a browser

Add generic getCookie function

23 Sep 19:30
f154131
Compare
Choose a tag to compare
  • Added getCookie function with option to choose the browser
  • Added listSupportedBrowsers for dynamically fetching list of supported browsers
  • Marked getFirefoxCookie and getChromeCookie as deprecated

Added profile options for both firefox and chrome

01 Aug 16:50
b7b47ea
Compare
Choose a tag to compare

The profile being used to fetch cookies can now be customised

Added Firefox support

24 Jul 18:40
9a22d57
Compare
Choose a tag to compare

Added firefox support

Firefox cookies can now be fetched with getFirefoxCookie

Switched sqlite libraries

20 Jul 18:51
de643f0
Compare
Choose a tag to compare

Switched to better-sqlite3, as it is a much smaller package and does the job well

Fixed domain bug

18 Jul 19:58
b863c99
Compare
Choose a tag to compare

Also added some tests for existing code