patricksanders / browsolate

every chrome, everywhere, all at once

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

browsolate

A badly-named tool for opening multiple isolated instances of Chrome. ALL AT THE SAME TIME.

How do?

Use it from your shell

browsolate https://google.com

Or from your 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)

About

every chrome, everywhere, all at once

License:GNU General Public License v3.0


Languages

Language:Go 100.0%