https://github.com/patricksanders/browsolate
every chrome, everywhere, all at once
https://github.com/patricksanders/browsolate
Last synced: over 1 year ago
JSON representation
every chrome, everywhere, all at once
- Host: GitHub
- URL: https://github.com/patricksanders/browsolate
- Owner: patricksanders
- License: gpl-3.0
- Created: 2022-07-18T03:11:05.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-26T22:01:04.000Z (about 3 years ago)
- Last Synced: 2025-01-29T19:32:19.453Z (over 1 year ago)
- Language: Go
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# browsolate
A badly-named tool for opening multiple isolated instances of Chrome. ALL AT THE SAME TIME.
## How do?
Use it from your shell
```shell
browsolate https://google.com
```
Or from your go
```go
package main
import (
"fmt"
"github.com/patricksanders/browsolate"
)
func main() {
opts := &browsolate.InstanceOpts{ChromePath: "/usr/bin/chrome"}
err := browsolate.StartIsolatedChromeInstance("https://google.com", opts)
if err != nil {
fmt.Print(err)
}
}
```
(but you probably shouldn't because I just threw it together)