Files
i2p.www/i2p2www/pages/downloads/firefox.html

46 lines
2.1 KiB
HTML
Raw Normal View History

2019-01-13 19:11:20 +00:00
{% extends "global/layout.html" %}
{%- from "downloads/macros" import package_outer with context -%}
2019-01-13 19:11:20 +00:00
{% block title %}Firefox Profile{% endblock %}
{% block content %}
<h1>{{ _('I2P Firefox Browser Profile') }}</h1>
{% trans -%}
2019-01-21 07:15:42 +00:00
An eepsite is a website that is hosted anonymously, a hidden service which is accessible through your web browser. It can be accessed by setting your web browser's HTTP proxy to use the I2P web proxy, port 4444, and browsing to the site.
<br>
<br>
To make that easy, the Firefox browser profile is pre-configured to work with I2P. While you can use any browser to access I2P sites, using a dedicated browser profile keeps your I2P browsing activity separate from your clearnet activity.
<br>
<br>
This profile also includes the NoScript plugin which protects you from malicious Javascript and the HTTPSEverywhere plugin which enforces SSL encryption where available.
2019-01-13 19:11:20 +00:00
{%- endtrans %}
{%- set name = 'Windows' -%}
{%- set icon = 'images/download/windows.png' -%}
{%- set filename = 'I2P-Profile-Installer-%s.exe' -%}
2019-02-12 15:34:11 +00:00
{%- set hash = '0e69cd51143a0e75cd089ebd838b038e85270be1d3c20a05a81d989316868f05' -%}
2019-01-13 19:11:20 +00:00
{% call package_outer('windows', name, icon) %}
<div class = "file">
<a class = "default" href="{{ url_for('downloads_redirect', version=pver(), net=def_mirror.net, protocol=def_mirror.protocol, domain=def_mirror.domain, file=pver(filename) )}}">
<span class = "name">{{ pver(filename) }}</span><br/>
<span class="mirror">{{ _('Mirror:') }} <img src="{{ url_for('static', filename='images/flags/'+def_mirror.country+'.png') }}" /> {{ def_mirror.org }}</span>
</a>
<a class="mirrors" href="{{ get_url('downloads_select', version=pver(), file=pver(filename)) }}">{{ _('select alternate mirror') }}</a>
</div>
<div class="meta">
<div class="hash">
<code>{{ hash }}</code>
</div>
</div>
<p>{% trans -%}
Download that file and run it.
{%- endtrans %}</p>
{% endcall %}
2019-01-22 21:11:45 +00:00
{% trans signer='zlatinb',
signingkey=url_for('static', filename='zlatinb.key.crt') -%}
The files are signed by {{ signer }},
<a href="{{ signingkey }}">whose key is here</a>.
{%- endtrans %}
2019-01-13 19:11:20 +00:00
{% endblock %}