├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── chromecookiestealer.go ├── go.mod ├── go.sum └── staticcheck.conf /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | chromecookiestealer 3 | *.json 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magisterquis/chromecookiestealer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magisterquis/chromecookiestealer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magisterquis/chromecookiestealer/HEAD/README.md -------------------------------------------------------------------------------- /chromecookiestealer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magisterquis/chromecookiestealer/HEAD/chromecookiestealer.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magisterquis/chromecookiestealer/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magisterquis/chromecookiestealer/HEAD/go.sum -------------------------------------------------------------------------------- /staticcheck.conf: -------------------------------------------------------------------------------- 1 | checks = ["all", "-ST1017"] 2 | --------------------------------------------------------------------------------