mirror of
https://github.com/go-i2p/go-i2pbrowser.git
synced 2025-06-08 10:31:51 -04:00
16 lines
447 B
Go
16 lines
447 B
Go
package goi2pbrowser
|
|
|
|
import _ "embed"
|
|
|
|
// BaseProfile is a zip of a Firefox profile with NoScript, HTTPS Everywhere, and I2PIPB
|
|
//
|
|
//go:embed i2p.firefox.base.profile.zip
|
|
var BaseProfile []byte
|
|
|
|
// UsabilityProfile is a zip of a Firefox profile with Jshelter, HTTPS Everywhere, uBlock Origin, LocalCDN, OICT, and I2PIPB
|
|
//
|
|
//go:embed i2p.firefox.usability.profile.zip
|
|
var UsabilityProfile []byte
|
|
|
|
//go:generate go run --tags=generate generate.go
|