idk eac85b60c0 update index.html
Former-commit-id: 635c1e1873
Former-commit-id: bd6ab7214ac6f3ad7adbef0b27d8ba724114ba7a
2022-08-07 22:21:29 -04:00
2022-08-07 02:00:32 -04:00
2022-08-07 20:20:29 -04:00
2022-08-07 20:46:22 -04:00
2022-08-07 22:21:29 -04:00
2022-08-07 22:16:36 -04:00
2022-08-07 22:14:45 -04:00
2022-08-07 20:50:44 -04:00
2022-08-07 22:21:29 -04:00
2022-08-07 22:21:29 -04:00
2022-08-07 16:30:40 -04:00
2022-08-07 22:21:13 -04:00
2022-08-07 22:16:36 -04:00
2022-08-07 22:21:29 -04:00

i2p.plugins.firefox

A port of the batch scripts from i2p.firefox to Java.

Getting started

Building

This is not actually a plugin yet, but it will be soon. The important bit is the jar. To generate that, you can either generate the full plugin, which will not work but produces the jar as a by-product, or you can:

cd src
ant
cd ...

To build just the jar. You'll know it worked if you can:

java -cp ./src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PFirefox

and a new Firefox instance comes up with a fresh profile. This is just a default Firefox profile, configuring it for I2P requires you to put a pre-configured Firefox profile into the i2p.firefox.base.profile directory or otherwise supply a static, pre-configured profile.

The cooler thing you can do with it is add it to an I2P distribution and somewhere in it, add a UI element that triggers something along the lines of this:

if (i2pIsRunning()) {
    logger.warning("I2P is already running");
    System.out.println("I2PFirefox");
    I2PFirefox i2pFirefox = new I2PFirefox();
    i2pFirefox.launch();
}

to add a browser management tool to it.

Description
A port of the batch scripts from i2p.firefox to Java.
Readme 265 MiB
Languages
HTML 40.5%
Java 40.4%
Shell 11.6%
JavaScript 6%
CSS 1.3%