add hardened firefox, offline mode to menu
This commit is contained in:
@ -188,6 +188,14 @@ func (m *Client) ServeHTTP(rw http.ResponseWriter, rq *http.Request) {
|
||||
log.Println("Starting I2P Browser")
|
||||
go m.TBS.RunI2PBWithLang()
|
||||
http.Redirect(rw, rq, "/", http.StatusFound)
|
||||
case "/launch-firefox-browser":
|
||||
log.Println("Starting Hardened Firefox Browser")
|
||||
go m.TBS.RunTBBWithOfflineClearnetProfile("i2p.firefox", false, true)
|
||||
http.Redirect(rw, rq, "/", http.StatusFound)
|
||||
case "/launch-offline-browser":
|
||||
log.Println("Starting Hardened Firefox Browser in offline mode")
|
||||
go m.TBS.RunTBBWithOfflineClearnetProfile("i2p.firefox.offline", true, true)
|
||||
http.Redirect(rw, rq, "/", http.StatusFound)
|
||||
case "/start-tor":
|
||||
log.Println("Starting Tor")
|
||||
go m.TBS.RunTorWithLang()
|
||||
|
Reference in New Issue
Block a user