2019-09-29 15:04:24 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title></title>
|
2019-10-07 13:59:31 +02:00
|
|
|
<link href="../styles.css" rel="stylesheet">
|
2019-09-29 15:04:24 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<div class="logo-container">
|
|
|
|
<img src="../../images/logo.png" alt="Privacy Redirect logo">
|
|
|
|
</div>
|
|
|
|
<small>
|
2020-02-09 01:08:04 +01:00
|
|
|
<span>Version: <span id="version"></span></span>
|
2019-09-29 15:04:24 +02:00
|
|
|
</small>
|
|
|
|
</header>
|
|
|
|
|
2019-10-07 13:59:31 +02:00
|
|
|
<section class="options settings_block">
|
2019-09-29 15:04:24 +02:00
|
|
|
<div class="onoffswitch switch" aria-label="Toggle Nitter redirects">
|
2019-10-07 13:59:31 +02:00
|
|
|
<h1>Nitter Redirects</h1>
|
|
|
|
<input aria-hidden="true" id="disableNitter" type="checkbox" checked>
|
|
|
|
<label for="disableNitter" class="checkbox-label">
|
2019-09-29 15:04:24 +02:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
2019-10-07 13:59:31 +02:00
|
|
|
<section class="options settings_block">
|
2019-09-29 15:04:24 +02:00
|
|
|
<div class="onoffswitch switch" aria-label="Toggle Invidious redirects">
|
2019-10-07 13:59:31 +02:00
|
|
|
<h1>Invidious Redirects</h1>
|
|
|
|
<input aria-hidden="true" id="disableInvidious" type="checkbox" checked>
|
|
|
|
<label for="disableInvidious" class="checkbox-label">
|
2019-09-29 15:04:24 +02:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
2020-02-01 04:17:51 +01:00
|
|
|
<section class="options settings_block">
|
|
|
|
<div class="onoffswitch switch" aria-label="Toggle Bibliogram redirects">
|
|
|
|
<h1>Bibliogram Redirects</h1>
|
|
|
|
<input aria-hidden="true" id="disableBibliogram" type="checkbox" checked>
|
|
|
|
<label for="disableBibliogram" class="checkbox-label">
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
2019-10-30 06:48:38 +01:00
|
|
|
<section class="options settings_block">
|
|
|
|
<h1>Nitter Instance</h1>
|
|
|
|
<input id="nitterInstance" type="url" placeholder="https://nitter.net">
|
|
|
|
<h1>Invidious Instance</h1>
|
|
|
|
<input id="invidiousInstance" type="url" placeholder="https://invidio.us">
|
2020-02-01 04:17:51 +01:00
|
|
|
<h1>Bibliogram Instance</h1>
|
|
|
|
<input id="bibliogramInstance" type="url" placeholder="https://bibliogram.art">
|
2019-10-30 06:48:38 +01:00
|
|
|
</section>
|
2019-09-29 15:04:24 +02:00
|
|
|
|
|
|
|
<script src="./popup.js"></script>
|
2019-10-07 13:59:31 +02:00
|
|
|
|
2019-09-29 15:04:24 +02:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|