├── .travis.yml ├── LICENSE ├── README.MD ├── config.json └── main.go /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | sudo: false 3 | go: 4 | - tip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribice/golang-chrome-automation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribice/golang-chrome-automation/HEAD/README.MD -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribice/golang-chrome-automation/HEAD/config.json -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribice/golang-chrome-automation/HEAD/main.go --------------------------------------------------------------------------------