diff options
author | Ruben Rodriguez <ruben@trisquel.info> | 2022-09-08 20:18:54 -0400 |
---|---|---|
committer | Ruben Rodriguez <ruben@trisquel.info> | 2022-09-08 20:18:54 -0400 |
commit | 5da28b0f8771834ae208d61431d632875e9f8e7d (patch) | |
tree | 688ecaff26197bad8abde617b4947b11d617309e /data/extensions/torproxy@icecat.gnu/settings.html | |
parent | 4a87716686104266a9cccc2d83cc249e312f3673 (diff) |
Updated extensions:
* Upgraded Privacy Redirect to 1.1.49 and configured to use the 10 most reliable invidious instances
* Removed ViewTube
* Added torproxy@icecat.gnu based on 'Proxy toggle' extension
* Added jShelter 0.11.1
* Upgraded LibreJS to 7.21.0
* Upgraded HTTPS Everywhere to 2021.7.13
* Upgraded SubmitMe to 1.9
Diffstat (limited to 'data/extensions/torproxy@icecat.gnu/settings.html')
-rw-r--r-- | data/extensions/torproxy@icecat.gnu/settings.html | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/data/extensions/torproxy@icecat.gnu/settings.html b/data/extensions/torproxy@icecat.gnu/settings.html new file mode 100644 index 0000000..1fe61c9 --- /dev/null +++ b/data/extensions/torproxy@icecat.gnu/settings.html @@ -0,0 +1,63 @@ +<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <link rel="stylesheet" href="settings.css" />
+ </head>
+ <body>
+ <form>
+ <table class="configtable">
+ <tr>
+ <th colspan="2">
+ Proxy configuration
+ </th>
+ </tr>
+ <tr>
+ <td colspan="2">The default values to use with a Tor service are:<br/>type=socks5, host=127.0.0.1, port=9050, RemoteDNS=true.<br/>The Tor service needs to be installed and running, separately of IceCat.</td>
+ </tr>
+ <tr>
+ <td>Type</td>
+ <td>
+ <select id="type">
+ <option value="direct" selected>Select proxy type</option>
+ <option value="http">HTTP</option>
+ <option value="https">HTTPS</option>
+ <option value="socks">SOCKS5</option>
+ <option value="socks4">SOCKS4</option>
+ </select>
+ </td>
+ </tr>
+ <tr>
+ <td>Host</td>
+ <td><input type="text" id="host"></td>
+ </tr>
+ <tr>
+ <td>Port</td>
+ <td><input type="number" min="1" max="65535" id="port"></td>
+ </tr>
+ <tr id="usernamerow">
+ <td>Username (optional)</td>
+ <td><input type="text" id="username"></td>
+ </tr>
+ <tr id="passwordrow">
+ <td>Password (optional)</td>
+ <td><input type="password" id="password"></td>
+ </tr>
+ <tr id="dnsrow">
+ <td>Remote DNS</td>
+ <td><input type="checkbox" id="dns"></td>
+ </tr>
+ <tr>
+ <th colspan="2">
+ General settings
+ </th>
+ </tr>
+ <tr id="skiplocalrow">
+ <td>Don't use proxy for hosts we can detect as local (e.g. LAN IPs)</td>
+ <td><input type="checkbox" id="skiplocal"></td>
+ </tr>
+ </table>
+ </form>
+ <script src="settings.js"></script>
+ </body>
+</html>
|